X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=pico%2Fpico_cmn.c;h=12f649f986409dfff290432d273c2959dc5ceb61;hb=a8fd6e376175c06e2423d0914359c761829d6e93;hp=79606762b06076eceac7450c61e29a166cac3b07;hpb=1d7a28a723d59da67b58e42a61bc9f1905044fd5;p=picodrive.git diff --git a/pico/pico_cmn.c b/pico/pico_cmn.c index 7960676..12f649f 100644 --- a/pico/pico_cmn.c +++ b/pico/pico_cmn.c @@ -1,5 +1,10 @@ -// common code for Pico.c and cd/Pico.c -// (c) Copyright 2007-2009 Grazvydas "notaz" Ignotas +/* + * common code for pico.c and cd/pico.c + * (C) notaz, 2007-2009 + * + * This work is licensed under the terms of MAME license. + * See COPYING file in the top-level directory. + */ #define CYCLES_M68K_LINE 488 // suitable for both PAL/NTSC #define CYCLES_M68K_VINT_LAG 68 @@ -21,6 +26,29 @@ SekRunM68k(m68k_cycles) #endif +static __inline void SekRunM68k(int cyc) +{ + int cyc_do; + pprof_start(m68k); + + SekCycleAim+=cyc; + if ((cyc_do=SekCycleAim-SekCycleCnt) <= 0) return; +#if defined(EMU_CORE_DEBUG) + // this means we do run-compare + SekCycleCnt+=CM_compareRun(cyc_do, 0); +#elif defined(EMU_C68K) + PicoCpuCM68k.cycles=cyc_do; + CycloneRun(&PicoCpuCM68k); + SekCycleCnt+=cyc_do-PicoCpuCM68k.cycles; +#elif defined(EMU_M68K) + SekCycleCnt+=m68k_execute(cyc_do); +#elif defined(EMU_F68K) + SekCycleCnt+=fm68k_emulate(cyc_do+1, 0, 0); +#endif + + pprof_end(m68k); +} + static int PicoFrameHints(void) { struct PicoVideo *pv=&Pico.video; @@ -83,9 +111,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 @@ -118,6 +143,9 @@ static int PicoFrameHints(void) PicoSyncZ80(SekCycleCnt); if (ym2612.dacen && PsndDacLine <= y) PsndDoDAC(y); +#ifdef PICO_32X + p32x_sync_sh2s(SekCycleCntT + SekCycleCnt); +#endif PsndGetSamples(y); } @@ -155,9 +183,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) @@ -171,10 +196,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) @@ -191,6 +212,11 @@ static int PicoFrameHints(void) z80_int(); } +#ifdef PICO_32X + p32x_sync_sh2s(SekCycleCntT + SekCycleCnt); + p32x_start_blank(); +#endif + // get samples from sound chips if (y == 224 && PsndOut) { @@ -226,9 +252,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()); @@ -247,6 +270,9 @@ static int PicoFrameHints(void) if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1) PsndDoDAC(lines-1); +#ifdef PICO_32X + p32x_sync_sh2s(SekCycleCntT + SekCycleCnt); +#endif timers_cycle(); return 0;