1
0
mirror of https://github.com/simh/simh.git synced 2026-05-01 05:48:35 +00:00

All VAX: extend REI debugging support

Identify reserved operand fault reason details.
This commit is contained in:
Mark Pizzolato
2018-09-27 06:41:40 -07:00
parent 0ca011cd46
commit be52190067
11 changed files with 41 additions and 63 deletions

View File

@@ -855,13 +855,13 @@ 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 /* 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 */
#define SIM_DBG_BRK_ACTION 0x200000 /* action activities */
#define SIM_DBG_DO 0x400000 /* do activities */
#define SIM_DBG_EVENT 0x01000000 /* event dispatch activities */
#define SIM_DBG_ACTIVATE 0x02000000 /* queue insertion activities */
#define SIM_DBG_AIO_QUEUE 0x04000000 /* asynch event queue activities */
#define SIM_DBG_EXP_STACK 0x08000000 /* expression stack activities */
#define SIM_DBG_EXP_EVAL 0x10000000 /* expression evaluation activities */
#define SIM_DBG_BRK_ACTION 0x20000000 /* action activities */
#define SIM_DBG_DO 0x40000000 /* do activities */
/* Open File Reference */
struct FILEREF {