1
0
mirror of https://github.com/open-simh/simh.git synced 2026-04-29 21:27:07 +00:00

Enhanced Remote Console support

- Added HELP REMOTE for remote console sessions to display the available remote console commands
 - Added input timeouts to remote console sessions to automatically continue the simulator
 - Added suspend/resume announcements to all remote console sessions
This commit is contained in:
Mark Pizzolato
2013-04-20 06:52:02 -07:00
parent ba09b2d3f2
commit de22137d1b
2 changed files with 160 additions and 70 deletions

4
scp.c
View File

@@ -613,7 +613,7 @@ static CTAB cmd_table[] = {
"go {new PC} start simulation\n", &run_cmd_message },
{ "STEP", &run_cmd, RU_STEP,
"s{tep} {n} simulate n instructions\n", &run_cmd_message },
{ "CONT", &run_cmd, RU_CONT,
{ "CONTINUE", &run_cmd, RU_CONT,
"c{ont} continue simulation\n", &run_cmd_message },
{ "BOOT", &run_cmd, RU_BOOT,
"b{oot} <unit> bootstrap unit\n", &run_cmd_message },
@@ -677,6 +677,8 @@ static CTAB cmd_table[] = {
"set remote TELNET=port specify remote console telnet port\n"
"set remote NOTELNET disables remote console\n"
"set remote CONNECTIONS=n specify number of concurrent remote console sessions\n"
"set remote TIMEOUT=n specify number of seconds without input before\n"
" automatic continue\n"
"set default <dir> set the current directory\n"
"set log log_file specify the log destination\n"
" (STDOUT,DEBUG or filename)\n"