1
0
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:
Mark Pizzolato
2013-01-26 10:20:31 -08:00
parent 7ceba3715c
commit 7a9db0fe64
4 changed files with 47 additions and 27 deletions

View File

@@ -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);
}

View File

@@ -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;