diff options
author | Michael Pavone <pavone@retrodev.com> | 2015-05-11 20:34:33 -0700 |
---|---|---|
committer | Michael Pavone <pavone@retrodev.com> | 2015-05-11 20:34:33 -0700 |
commit | 9eadca47ed6f00e7a00ac25b6b85ba4426104950 (patch) | |
tree | d10d297e6e93ca06ec93db50eadf14209ef29a8b /z80_to_x86.c | |
parent | 92699df4cb844ec29bcb2c55e5d68d747aabb6a8 (diff) |
Remove/comment verbose logging added for tracking down sync bug
Diffstat (limited to 'z80_to_x86.c')
-rw-r--r-- | z80_to_x86.c | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/z80_to_x86.c b/z80_to_x86.c index 6b498f5..17eb40a 100644 --- a/z80_to_x86.c +++ b/z80_to_x86.c @@ -2279,10 +2279,10 @@ void z80_clear_reset(z80_context * context, uint32_t cycle) z80_run(context, cycle); if (context->reset) { //TODO: Handle case where reset is not asserted long enough - context->im = 0; - context->iff1 = context->iff2 = 0; + context->im = 0; + context->iff1 = context->iff2 = 0; context->native_pc = NULL; - context->extra_pc = NULL; + context->extra_pc = NULL; context->pc = 0; context->reset = 0; if (context->busreq) { @@ -2294,11 +2294,9 @@ void z80_clear_reset(z80_context * context, uint32_t cycle) void z80_assert_busreq(z80_context * context, uint32_t cycle) { - printf("bus requested at %d\n", cycle); z80_run(context, cycle); - printf("asserted busreq at %d\n", context->current_cycle); context->busreq = 1; - } +} void z80_clear_busreq(z80_context * context, uint32_t cycle) { |