1
0
mirror of https://github.com/simh/simh.git synced 2026-01-30 21:32:27 +00:00

SCP: Add a way to see the enabled SCP internal devices SHOW DEV -I

This commit is contained in:
Mark Pizzolato
2016-12-17 10:35:56 -08:00
parent 7dd1f0b89e
commit 48e0b47d51
3 changed files with 13 additions and 7 deletions

View File

@@ -403,7 +403,7 @@ t_stat sim_rem_con_data_svc (UNIT *uptr); /* remote console connec
t_stat sim_rem_con_reset (DEVICE *dptr); /* remote console reset routine */
UNIT sim_rem_con_unit[2] = {
{ UDATA (&sim_rem_con_poll_svc, UNIT_IDLE, 0) }, /* remote console connection polling unit */
{ UDATA (&sim_rem_con_data_svc, UNIT_IDLE, 0) }}; /* console data handling unit */
{ UDATA (&sim_rem_con_data_svc, UNIT_IDLE|UNIT_DIS, 0) }}; /* console data handling unit */
DEBTAB sim_rem_con_debug[] = {
{"TRC", DBG_TRC},