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

SCP: Auto detect WRU being entered for simulators without a console device

This commit is contained in:
Mark Pizzolato
2019-12-11 12:25:18 -08:00
parent e261a2fa28
commit 73a41c4bc7
4 changed files with 20 additions and 5 deletions

View File

@@ -127,12 +127,14 @@ int32 sim_tt_outcvt (int32 c, uint32 mode);
t_stat sim_tt_settabs (UNIT *uptr, int32 val, CONST char *cptr, void *desc);
t_stat sim_tt_showtabs (FILE *st, UNIT *uptr, int32 val, CONST void *desc);
extern int32 sim_rem_cmd_active_line; /* command in progress on line # */
extern int32 sim_rem_cmd_active_line; /* command in progress on line # */
extern int32 sim_int_char; /* interrupt character */
extern int32 sim_brk_char; /* break character */
extern int32 sim_tt_pchar; /* printable character mask */
extern int32 sim_del_char; /* delete character */
extern int32 sim_int_char; /* interrupt character */
extern int32 sim_brk_char; /* break character */
extern int32 sim_tt_pchar; /* printable character mask */
extern int32 sim_del_char; /* delete character */
extern t_bool sim_signaled_int_char; /* WRU character detected by signal while running */
extern uint32 sim_last_poll_kbd_time; /* time when sim_poll_kbd was called */
#ifdef __cplusplus
}