# HG changeset patch # User Mike Pavone # Date 1357008832 28800 # Node ID 177ba1a5af9c286c24251a9d97b825d67daa50c0 # Parent e5487ef04619b99952e47f4160172257d34b9a12 Comment out some debug printfs diff -r e5487ef04619 -r 177ba1a5af9c blastem.c --- a/blastem.c Mon Dec 31 18:36:16 2012 -0800 +++ b/blastem.c Mon Dec 31 18:53:52 2012 -0800 @@ -327,7 +327,7 @@ 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 @@ 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 @@ 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 {