From 56b2ecd73d6265030fadc47048808a056db421ed Mon Sep 17 00:00:00 2001 From: Mike Pavone Date: Mon, 31 Dec 2012 18:53:52 -0800 Subject: Comment out some debug printfs --- blastem.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'blastem.c') diff --git a/blastem.c b/blastem.c index aa2fc90..b0e9e27 100644 --- a/blastem.c +++ b/blastem.c @@ -327,7 +327,7 @@ m68k_context * io_write_w(uint32_t location, m68k_context * context, uint16_t va break; } } else { - printf("IO Write of %X to %X @ %d\n", value, location, context->current_cycle); + //printf("IO Write of %X to %X @ %d\n", value, location, context->current_cycle); if (location == 0x1100) { if (busack_cycle > context->current_cycle) { busack = new_busack; @@ -397,7 +397,7 @@ m68k_context * io_read(uint32_t location, m68k_context * context) busack_cycle = CYCLE_NEVER; } context->value = reset || busack; - printf("Byte read of BUSREQ returned %d @ %d (reset: %d, busack: %d)\n", context->value, context->current_cycle, reset, busack); + //printf("Byte read of BUSREQ returned %d @ %d (reset: %d, busack: %d)\n", context->value, context->current_cycle, reset, busack); } else if (location == 0x1200) { context->value = !reset; } else { @@ -445,7 +445,7 @@ m68k_context * io_read_w(uint32_t location, m68k_context * context) busack_cycle = CYCLE_NEVER; } context->value = (reset || busack) << 8; - printf("Word read of BUSREQ returned %d\n", context->value); + //printf("Word read of BUSREQ returned %d\n", context->value); } else if (location == 0x1200) { context->value = (!reset) << 8; } else { -- cgit v1.2.3