X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fpico_cmn.c;h=9099c855d915c4cfdb2de4b42588606f186139f4;hb=19886062f1a36f70b1f01d58f3fa1b79162defac;hp=7178440d65bfa6f553e28e8c84b3c405bf7856f9;hpb=ed4402a7dfd12dbbf34c547b438a671ae8114197;p=picodrive.git diff --git a/pico/pico_cmn.c b/pico/pico_cmn.c index 7178440..9099c85 100644 --- a/pico/pico_cmn.c +++ b/pico/pico_cmn.c @@ -30,9 +30,12 @@ static __inline void SekRunM68k(int cyc) { int cyc_do; pprof_start(m68k); + pevt_log_m68k_o(EVT_RUN_START); SekCycleAim+=cyc; - if ((cyc_do=SekCycleAim-SekCycleCnt) <= 0) return; + if ((cyc_do=SekCycleAim-SekCycleCnt) <= 0) + goto out; + #if defined(EMU_CORE_DEBUG) // this means we do run-compare SekCycleCnt+=CM_compareRun(cyc_do, 0); @@ -46,6 +49,8 @@ static __inline void SekRunM68k(int cyc) SekCycleCnt+=fm68k_emulate(cyc_do+1, 0, 0); #endif +out: + pevt_log_m68k_o(EVT_RUN_END); pprof_end(m68k); } @@ -55,6 +60,7 @@ static int PicoFrameHints(void) int lines, y, lines_vis = 224, line_sample, skip, vcnt_wrap; int hint; // Hint counter + pevt_log_m68k_o(EVT_FRAME_START); pv->v_counter = Pico.m.scanline = 0; if ((PicoOpt&POPT_ALT_RENDERER) && !PicoSkipFrame && (pv->reg[1]&0x40)) { // fast rend., display enabled @@ -111,9 +117,6 @@ static int PicoFrameHints(void) #ifdef PICO_CD check_cd_dma(); #endif -#ifdef PICO_32X - p32x_timers_do(1); -#endif // H-Interrupts: if (--hint < 0) // y <= lines_vis: Comix Zone, Golden Axe @@ -146,6 +149,9 @@ static int PicoFrameHints(void) PicoSyncZ80(SekCycleCnt); if (ym2612.dacen && PsndDacLine <= y) PsndDoDAC(y); +#ifdef PICO_32X + p32x_sync_sh2s(SekCyclesDoneT2()); +#endif PsndGetSamples(y); } @@ -158,6 +164,7 @@ static int PicoFrameHints(void) #else if (PicoLineHook) PicoLineHook(); #endif + pevt_log_m68k_o(EVT_NEXT_LINE); } if (!skip) @@ -183,9 +190,6 @@ static int PicoFrameHints(void) #ifdef PICO_CD check_cd_dma(); #endif -#ifdef PICO_32X - p32x_timers_do(1); -#endif // Last H-Int: if (--hint < 0) @@ -199,10 +203,6 @@ static int PicoFrameHints(void) pv->status|=0x08; // go into vblank pv->pending_ints|=0x20; -#ifdef PICO_32X - p32x_start_blank(); -#endif - // 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) @@ -219,6 +219,11 @@ static int PicoFrameHints(void) z80_int(); } +#ifdef PICO_32X + p32x_sync_sh2s(SekCyclesDoneT2()); + p32x_start_blank(); +#endif + // get samples from sound chips if (y == 224 && PsndOut) { @@ -237,6 +242,7 @@ static int PicoFrameHints(void) #else if (PicoLineHook) PicoLineHook(); #endif + pevt_log_m68k_o(EVT_NEXT_LINE); lines = scanlines_total; vcnt_wrap = Pico.m.pal ? 0x103 : 0xEB; // based on Gens, TODO: verify @@ -254,9 +260,6 @@ static int PicoFrameHints(void) #ifdef PICO_CD check_cd_dma(); #endif -#ifdef PICO_32X - p32x_timers_do(1); -#endif // Run scanline: if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA()); @@ -267,6 +270,7 @@ static int PicoFrameHints(void) #else if (PicoLineHook) PicoLineHook(); #endif + pevt_log_m68k_o(EVT_NEXT_LINE); } // sync z80 @@ -275,6 +279,9 @@ static int PicoFrameHints(void) if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1) PsndDoDAC(lines-1); +#ifdef PICO_32X + p32x_sync_sh2s(SekCyclesDoneT2()); +#endif timers_cycle(); return 0;