1
0
mirror of https://github.com/simh/simh.git synced 2026-02-09 17:52:36 +00:00

Remote Console: Restructured so that commands are not executed within the sim_instr() routine.

This approach removes the burden from any simulator code to perform instruction execution postlude before calling sim_process_event and prelude activites when sim_process_event returns.

Remote Console commands are now executed from the same simulator context as if entered from the initial sim> prompt.
This commit is contained in:
Mark Pizzolato
2015-02-15 11:00:01 -08:00
parent d4cb5e8aed
commit 2c2ffe39bf
4 changed files with 164 additions and 85 deletions

View File

@@ -69,6 +69,7 @@
t_stat sim_set_console (int32 flag, char *cptr);
t_stat sim_set_remote_console (int32 flag, char *cptr);
void sim_remote_process_command (void);
t_stat sim_set_kmap (int32 flag, char *cptr);
t_stat sim_set_telnet (int32 flag, char *cptr);
t_stat sim_set_notelnet (int32 flag, char *cptr);