X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2FMemoryCmn.c;h=15fdeefbc62d16871c61a2f524805ee581880d16;hb=5f20bb80364b4a30149bbb6a7e73af3209532e56;hp=90b9e2de6a4bec3364d9bce048f7ae851866c642;hpb=1dceadaee482ad3ca6f5ccbef57ea93893f45e82;p=picodrive.git diff --git a/Pico/MemoryCmn.c b/Pico/MemoryCmn.c index 90b9e2d..15fdeef 100644 --- a/Pico/MemoryCmn.c +++ b/Pico/MemoryCmn.c @@ -57,7 +57,7 @@ u32 z80ReadBusReq(void) int stop_before = SekCyclesDone() - z80stopCycle; //elprintf(EL_BUSREQ, "get_zrun: stop before: %i", stop_before); // note: if we use 20 or more here, Barkley Shut Up and Jam! will purposedly crash itself. - // TODO: CD Terminator + // but CD Terminator needs at least 32, so it only works because next frame cycle wrap. if (stop_before > 0 && stop_before < 20) // Gens uses 16 here d = 1; // bus not yet available } @@ -176,7 +176,7 @@ void OtherWrite8(u32 a,u32 d) #endif if (a==0xa11100) { z80WriteBusReq(d); return; } if (a==0xa11200) { - dprintf("write z80Reset: %02x", d); + elprintf(EL_BUSREQ, "write z80Reset: %02x", d); if(!(d&1)) z80_reset(); return; }