X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2FMemoryCmn.c;h=dee031d5de806d1c66273ddb694ef9e8d54a4b02;hb=2aa27095f2dbf5b38950fcb1f856d5ffc6a70361;hp=1b8a1b91b3e78cbaab89e1f34c243cc870ea4ddc;hpb=b6d7ac70909e29ba8f40d6eaee53dd5b1bb71e52;p=picodrive.git diff --git a/Pico/MemoryCmn.c b/Pico/MemoryCmn.c index 1b8a1b9..dee031d 100644 --- a/Pico/MemoryCmn.c +++ b/Pico/MemoryCmn.c @@ -46,7 +46,7 @@ static u32 z80ReadBusReq(void) { u32 d=Pico.m.z80Run&1; - if (!d && Pico.m.scanline != -1) { + if (!d) { // needed by buggy Terminator (Sega CD) int stop_before = SekCyclesDone() - z80stopCycle; //elprintf(EL_BUSREQ, "get_zrun: stop before: %i", stop_before); @@ -55,7 +55,7 @@ u32 z80ReadBusReq(void) if (stop_before > 0 && stop_before < 20) // Gens uses 16 here d = 1; // bus not yet available } - // |=0x80 for Shadow of the Beast & Super Offroad + elprintf(EL_BUSREQ, "get_zrun: %02x [%i] @%06x", d|0x80, SekCyclesDone(), SekPc); return d|0x80; }