SCP: Add SET <dev> BINARY as an alternate radix option for all devices
This commit is contained in:
parent
6a2a3de19c
commit
ea898b24bd
1 changed files with 2 additions and 1 deletions
3
scp.c
3
scp.c
|
@ -1221,7 +1221,7 @@ static const char simh_help[] =
|
||||||
"3Command Prompt\n"
|
"3Command Prompt\n"
|
||||||
"+set prompt \"string\" sets an alternate simulator prompt string\n"
|
"+set prompt \"string\" sets an alternate simulator prompt string\n"
|
||||||
"3Device and Unit\n"
|
"3Device and Unit\n"
|
||||||
"+set <dev> OCT|DEC|HEX set device display radix\n"
|
"+set <dev> OCT|DEC|HEX|BIN set device display radix\n"
|
||||||
"+set <dev> ENABLED enable device\n"
|
"+set <dev> ENABLED enable device\n"
|
||||||
"+set <dev> DISABLED disable device\n"
|
"+set <dev> DISABLED disable device\n"
|
||||||
"+set <dev> DEBUG{=arg} set device debug flags\n"
|
"+set <dev> DEBUG{=arg} set device debug flags\n"
|
||||||
|
@ -1991,6 +1991,7 @@ static C1TAB set_dev_tab[] = {
|
||||||
{ "OCTAL", &set_dev_radix, 8 },
|
{ "OCTAL", &set_dev_radix, 8 },
|
||||||
{ "DECIMAL", &set_dev_radix, 10 },
|
{ "DECIMAL", &set_dev_radix, 10 },
|
||||||
{ "HEX", &set_dev_radix, 16 },
|
{ "HEX", &set_dev_radix, 16 },
|
||||||
|
{ "BINARY", &set_dev_radix, 2 },
|
||||||
{ "ENABLED", &set_dev_enbdis, 1 },
|
{ "ENABLED", &set_dev_enbdis, 1 },
|
||||||
{ "DISABLED", &set_dev_enbdis, 0 },
|
{ "DISABLED", &set_dev_enbdis, 0 },
|
||||||
{ "DEBUG", &set_dev_debug, 1 },
|
{ "DEBUG", &set_dev_debug, 1 },
|
||||||
|
|
Loading…
Add table
Reference in a new issue