summaryrefslogtreecommitdiff
path: root/emma.c
diff options
context:
space:
mode:
authorIan C <ianc@noddybox.co.uk>2006-08-25 23:28:49 +0000
committerIan C <ianc@noddybox.co.uk>2006-08-25 23:28:49 +0000
commit458ae07fcde77592e06927f0dddcd12c8d242b29 (patch)
tree23a7c741e02a287df2b802184095dec9d6b4817a /emma.c
parent0034381aac6413def6960c7e4a1f8b84b5538549 (diff)
Devolopment checkin. Compiles, but doesn't pass tests.
Diffstat (limited to 'emma.c')
-rw-r--r--emma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/emma.c b/emma.c
index 21c640e..f8f0932 100644
--- a/emma.c
+++ b/emma.c
@@ -182,7 +182,7 @@ static void DisplayState(void)
Log("BC=%4.4x DE=%4.4x HL=%4.4x ",s.BC,s.DE,s.HL);
Log("IX=%4.4x IY=%4.4x SP=%4.4x\n",s.IX,s.IY,s.SP);
Log("I=%2.2x IM=%2.2x R=%2.2x ",s.I,s.IM,s.R);
- Log("IFF1=%2.2x IFF2=%2.2x\n",s.IFF1,s.IFF2);
+ Log("IFF1=%2.2x IFF2=%2.2x CYCLES=%lu\n",s.IFF1,s.IFF2,s.cycle);
Log("%4.4x: ",s.PC);
Log("%s\n",Disassemble(&s.PC));
}