From: kub Date: Tue, 1 Apr 2025 19:09:40 +0000 (+0200) Subject: core md, set interlace odd field flag at proper cycle X-Git-Tag: v2.04~1 X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06ad4337d5b97850209d23d8bf2540dd664f6351;p=picodrive.git core md, set interlace odd field flag at proper cycle --- diff --git a/pico/pico_cmn.c b/pico/pico_cmn.c index 37198f11..00785223 100644 --- a/pico/pico_cmn.c +++ b/pico/pico_cmn.c @@ -231,11 +231,6 @@ static int PicoFrameHints(void) p32x_start_blank(); #endif - if (pv->reg[12] & 2) - pv->status ^= SR_ODD; // change odd bit in interlace modes - else - pv->status &= ~SR_ODD; // never set in non-interlace modes - // the following SekRun is there for several reasons: // there must be a delay after vblank bit is set and irq is asserted (Mazin Saga) // also delay between F bit (bit 7) is set in SR and IRQ happens (Ex-Mutants) @@ -247,6 +242,7 @@ static int PicoFrameHints(void) SyncCPUs(Pico.t.m68c_aim); + // slot 0x00 pv->status |= SR_F; pv->pending_ints |= 0x20; @@ -262,6 +258,12 @@ static int PicoFrameHints(void) SekInterrupt(6); } + // slot 0x01 + if (pv->reg[12] & 2) + pv->status ^= SR_ODD; // change odd bit in interlace modes + else + pv->status &= ~SR_ODD; // never set in non-interlace modes + // assert Z80 interrupt for one scanline even in busrq hold (Teddy Blues) if (/*Pico.m.z80Run &&*/ !Pico.m.z80_reset && (PicoIn.opt&POPT_EN_Z80)) { elprintf(EL_INTS, "zint");