From f4c3e56a823406b0351595c7ae8d46541bee2fae Mon Sep 17 00:00:00 2001 From: Nick Briggs Date: Wed, 14 Jun 2017 18:06:04 -0700 Subject: [PATCH] Reduce verbosity of opcode tracing so that trace files are more manageable size. modified: src/xc.c --- src/xc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xc.c b/src/xc.c index 50c0f19..6eafd52 100644 --- a/src/xc.c +++ b/src/xc.c @@ -289,7 +289,7 @@ nextopcode: #endif /* MYOPTRACE */ OPTPRINT( - ("Dispatch, PC = 0x%x, op = 0%o. TOS = 0x%x.\n", (int)PCMAC, Get_BYTE_PCMAC0, TOPOFSTACK)); + ("PC= 0x%x op= 0%o TOS= 0x%x\n", (int)PCMAC, Get_BYTE_PCMAC0, TOPOFSTACK)); #ifdef MYOPTRACE } #endif /* MYOPTRACE */