1
0
mirror of https://github.com/Interlisp/maiko.git synced 2026-05-03 06:49:22 +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 */ #endif /* MYOPTRACE */
OPTPRINT( 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 #ifdef MYOPTRACE
} }
#endif /* MYOPTRACE */ #endif /* MYOPTRACE */