1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-01-13 23:27:12 +00:00

Add more debugging output when opcode tracing is enabled.

modified:   src/xc.c
This commit is contained in:
Nick Briggs 2020-07-16 16:40:37 -07:00
parent a3a14577be
commit e03a513727

View File

@ -293,7 +293,7 @@ nextopcode:
#endif /* MYOPTRACE */
OPTPRINT(
("PC= 0x%x op= 0%o TOS= 0x%x\n", (int)PCMAC, Get_BYTE_PCMAC0, TOPOFSTACK));
("PC= 0x%x (fn+%d) op= 0%o TOS= 0x%x\n", (int)PCMAC, (int)PCMAC - (int)FuncObj, Get_BYTE_PCMAC0, TOPOFSTACK));
#ifdef MYOPTRACE
}
#endif /* MYOPTRACE */