mirror of
https://github.com/simh/simh.git
synced 2026-01-27 04:22:24 +00:00
Clean up output formatting for SHOW DEVICE, SHOW CONFIG and changed SHOW SYSTEM to SHOW FEATURES
This commit is contained in:
@@ -1284,7 +1284,7 @@ t_stat cr_show_trans ( FILE *st,
|
||||
int32 val,
|
||||
void *desc )
|
||||
{
|
||||
fprintf (st, "translation %s", trans[table]);
|
||||
fprintf (st, "translation=%s", trans[table]);
|
||||
return (SCPE_OK);
|
||||
}
|
||||
|
||||
|
||||
@@ -731,7 +731,7 @@ t_stat xq_show_type (FILE* st, UNIT* uptr, int32 val, void* desc)
|
||||
case XQ_T_DELQA_PLUS: fprintf(st, "DELQA-T"); break;
|
||||
}
|
||||
if (xq->var->type != xq->var->mode) {
|
||||
fprintf(st, ",mode=");
|
||||
fprintf(st, ", mode=");
|
||||
switch (xq->var->mode) {
|
||||
case XQ_T_DEQNA: fprintf(st, "DEQNA"); break;
|
||||
case XQ_T_DELQA: fprintf(st, "DELQA"); break;
|
||||
|
||||
Reference in New Issue
Block a user