SCP: Fix debug setup info displayed by SHOW SEND and SHOW EXPECT
This commit is contained in:
parent
e84c798d1c
commit
5fd8b63cf4
1 changed files with 2 additions and 2 deletions
4
scp.c
4
scp.c
|
@ -9017,7 +9017,7 @@ if (exp->buf_size) {
|
||||||
if (exp->after)
|
if (exp->after)
|
||||||
fprintf (st, "Halt After: %d instructions\n", exp->after);
|
fprintf (st, "Halt After: %d instructions\n", exp->after);
|
||||||
if (exp->dptr && exp->dbit)
|
if (exp->dptr && exp->dbit)
|
||||||
fprintf (st, "Debugging via: SET %s DEBUG%s%s\n", sim_dname(exp->dptr), exp->dptr->debflags ? get_dbg_verb (exp->dbit, exp->dptr) : "");
|
fprintf (st, "Debugging via: SET %s DEBUG%s%s\n", sim_dname(exp->dptr), exp->dptr->debflags ? "=" : "", exp->dptr->debflags ? get_dbg_verb (exp->dbit, exp->dptr) : "");
|
||||||
if (!*match)
|
if (!*match)
|
||||||
return sim_exp_showall (st, exp);
|
return sim_exp_showall (st, exp);
|
||||||
if (!ep)
|
if (!ep)
|
||||||
|
@ -9251,7 +9251,7 @@ if ((snd->next_time - sim_gtime()) > 0)
|
||||||
fprintf (st, "Minimum of %d instructions befor sending first character\n", (int)(snd->next_time - sim_gtime()));
|
fprintf (st, "Minimum of %d instructions befor sending first character\n", (int)(snd->next_time - sim_gtime()));
|
||||||
fprintf (st, "Minimum of %d instructions between characters\n", (int)snd->delay);
|
fprintf (st, "Minimum of %d instructions between characters\n", (int)snd->delay);
|
||||||
if (snd->dptr && snd->dbit)
|
if (snd->dptr && snd->dbit)
|
||||||
fprintf (st, "Debugging via: SET %s DEBUG%s%s\n", sim_dname(snd->dptr), snd->dptr->debflags ? get_dbg_verb (snd->dbit, snd->dptr) : "");
|
fprintf (st, "Debugging via: SET %s DEBUG%s%s\n", sim_dname(snd->dptr), snd->dptr->debflags ? "=" : "", snd->dptr->debflags ? get_dbg_verb (snd->dbit, snd->dptr) : "");
|
||||||
return SCPE_OK;
|
return SCPE_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue