1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

Retained the prior SET CONSOLE DEBUG={stdout|log} behavior which deprecated and replaced by SET DEBUG={stdout|log}. Reported by Rob Jarratt

This commit is contained in:
Mark Pizzolato
2013-01-05 14:34:10 -08:00
parent d12a445007
commit 375a02181e
2 changed files with 2 additions and 6 deletions

View File

@@ -214,8 +214,8 @@ static CTAB set_con_tab[] = {
{ "NOSERIAL", &sim_set_noserial, 0 },
{ "LOG", &sim_set_logon, 0 },
{ "NOLOG", &sim_set_logoff, 0 },
{ "DEBUG", &sim_set_cons_debug, 1 },
{ "NODEBUG", &sim_set_cons_debug, 0 },
{ "DEBUG", &sim_set_debon, 0 },
{ "NODEBUG", &sim_set_deboff, 0 },
{ NULL, NULL, 0 }
};