1
0
mirror of https://github.com/simh/simh.git synced 2026-05-04 06:58:38 +00:00

SCP: Add SCP debug options to default device debug setup

This commit is contained in:
Mark Pizzolato
2018-05-03 11:49:42 -07:00
parent 130ad1c21f
commit 96d3b5d26b
2 changed files with 52 additions and 7 deletions

View File

@@ -844,11 +844,11 @@ struct DEBTAB {
#define DEBUG_PRI(d,m) (sim_deb && (d.dctrl & (m)))
#define DEBUG_PRJ(d,m) (sim_deb && ((d)->dctrl & (m)))
#define SIM_DBG_EVENT 0x010000
#define SIM_DBG_ACTIVATE 0x020000
#define SIM_DBG_AIO_QUEUE 0x040000
#define SIM_DBG_EXP_STACK 0x080000
#define SIM_DBG_EXP_EVAL 0x100000
#define SIM_DBG_EVENT 0x010000 /* event dispatch activities */
#define SIM_DBG_ACTIVATE 0x020000 /* queue insertion activities */
#define SIM_DBG_AIO_QUEUE 0x040000 /* asynch event queue activities */
#define SIM_DBG_EXP_STACK 0x080000 /* expression stack activities */
#define SIM_DBG_EXP_EVAL 0x100000 /* expression evaluation activities */
/* Open File Reference */
struct FILEREF {