X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Pico%2Fcd%2FPico.c;h=a97e325dc8acdc0601c9777a7f4c4c530e9d59d4;hb=8022f53da61b8e70420a3bac97250119bbe26457;hp=b1d7c5d721ab17afda0788762a3daf746f070a2d;hpb=4696954094ca11200b8b08e8a9bfb231cf21fb86;p=picodrive.git diff --git a/Pico/cd/Pico.c b/Pico/cd/Pico.c index b1d7c5d..a97e325 100644 --- a/Pico/cd/Pico.c +++ b/Pico/cd/Pico.c @@ -1,14 +1,7 @@ -// This is part of Pico Library - -// (c) Copyright 2004 Dave, All rights reserved. // (c) Copyright 2007 notaz, All rights reserved. -// Free for non-commercial use. - -// For commercial use, separate licencing terms must be obtained. #include "../PicoInt.h" -#include "../sound/sound.h" extern unsigned char formatted_bram[4*0x10]; @@ -38,7 +31,7 @@ int (*PicoMCDcloseTray)(void) = NULL; } -int PicoInitMCD(void) +PICO_INTERNAL int PicoInitMCD(void) { SekInitS68k(); Init_CD_Driver(); @@ -47,7 +40,7 @@ int PicoInitMCD(void) } -void PicoExitMCD(void) +PICO_INTERNAL void PicoExitMCD(void) { End_CD_Driver(); @@ -55,7 +48,7 @@ void PicoExitMCD(void) //dump_ram(Pico.ram, "ram.bin"); } -int PicoResetMCD(int hard) +PICO_INTERNAL int PicoResetMCD(int hard) { if (hard) { int fmt_size = sizeof(formatted_bram); @@ -76,26 +69,37 @@ int PicoResetMCD(int hard) Reset_CD(); LC89510_Reset(); gfx_cd_reset(); -#ifdef _ASM_CD_MEMORY_C PicoMemResetCD(1); +#ifdef _ASM_CD_MEMORY_C //PicoMemResetCDdecode(1); // don't have to call this in 2M mode #endif + // use SRam.data for RAM cart + if (SRam.data) free(SRam.data); + SRam.data = NULL; + if (PicoOpt&0x8000) + SRam.data = calloc(1, 0x12000); + return 0; } -static __inline void SekRun(int cyc) +static __inline void SekRunM68k(int cyc) { int cyc_do; SekCycleAim+=cyc; - if((cyc_do=SekCycleAim-SekCycleCnt) < 0) return; -#if defined(EMU_C68K) - PicoCpu.cycles=cyc_do; - CycloneRun(&PicoCpu); - SekCycleCnt+=cyc_do-PicoCpu.cycles; + if ((cyc_do=SekCycleAim-SekCycleCnt) <= 0) return; +#if defined(EMU_CORE_DEBUG) + 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) - m68k_set_context(&PicoM68kCPU); + m68k_set_context(&PicoCpuMM68k); SekCycleCnt+=m68k_execute(cyc_do); +#elif defined(EMU_F68K) + g_m68kcontext=&PicoCpuFM68k; + SekCycleCnt+=fm68k_emulate(cyc_do, 0); #endif } @@ -103,27 +107,38 @@ static __inline void SekRunS68k(int cyc) { int cyc_do; SekCycleAimS68k+=cyc; - if((cyc_do=SekCycleAimS68k-SekCycleCntS68k) < 0) return; -#if defined(EMU_C68K) - PicoCpuS68k.cycles=cyc_do; - CycloneRun(&PicoCpuS68k); - SekCycleCntS68k+=cyc_do-PicoCpuS68k.cycles; + if ((cyc_do=SekCycleAimS68k-SekCycleCntS68k) <= 0) return; +#if defined(EMU_CORE_DEBUG) + SekCycleCntS68k+=CM_compareRun(cyc_do, 1); +#elif defined(EMU_C68K) + PicoCpuCS68k.cycles=cyc_do; + CycloneRun(&PicoCpuCS68k); + SekCycleCntS68k+=cyc_do-PicoCpuCS68k.cycles; #elif defined(EMU_M68K) - m68k_set_context(&PicoS68kCPU); + m68k_set_context(&PicoCpuMS68k); SekCycleCntS68k+=m68k_execute(cyc_do); +#elif defined(EMU_F68K) + g_m68kcontext=&PicoCpuFS68k; + SekCycleCntS68k+=fm68k_emulate(cyc_do, 0); #endif } #define PS_STEP_M68K ((488<<16)/20) // ~24 //#define PS_STEP_S68K 13 -#ifdef _ASM_CD_PICO_C -void SekRunPS(int cyc_m68k, int cyc_s68k); +#if defined(_ASM_CD_PICO_C) +extern void SekRunPS(int cyc_m68k, int cyc_s68k); +#elif defined(EMU_F68K) +static __inline void SekRunPS(int cyc_m68k, int cyc_s68k) +{ + SekCycleAim+=cyc_m68k; + SekCycleAimS68k+=cyc_s68k; + fm68k_emulate(0, 1); +} #else static __inline void SekRunPS(int cyc_m68k, int cyc_s68k) { int cycn, cycn_s68k, cyc_do; - int d_cm = 0, d_cs = 0, ex; SekCycleAim+=cyc_m68k; SekCycleAimS68k+=cyc_s68k; @@ -133,34 +148,34 @@ static __inline void SekRunPS(int cyc_m68k, int cyc_s68k) /* loop 488 downto 0 in steps of PS_STEP */ for (cycn = (488<<16)-PS_STEP_M68K; cycn >= 0; cycn -= PS_STEP_M68K) { - ex = 0; cycn_s68k = (cycn + cycn/2 + cycn/8) >> 16; -//fprintf(stderr, "%3i/%3i: ", cycn>>16, cycn_s68k); if ((cyc_do = SekCycleAim-SekCycleCnt-(cycn>>16)) > 0) { #if defined(EMU_C68K) - PicoCpu.cycles = cyc_do; - CycloneRun(&PicoCpu); - SekCycleCnt += cyc_do - PicoCpu.cycles; + PicoCpuCM68k.cycles = cyc_do; + CycloneRun(&PicoCpuCM68k); + SekCycleCnt += cyc_do - PicoCpuCM68k.cycles; #elif defined(EMU_M68K) - m68k_set_context(&PicoM68kCPU); - SekCycleCnt += (ex = m68k_execute(cyc_do)); + m68k_set_context(&PicoCpuMM68k); + SekCycleCnt += m68k_execute(cyc_do); +#elif defined(EMU_F68K) + g_m68kcontext = &PicoCpuFM68k; + SekCycleCnt += fm68k_emulate(cyc_do, 0); #endif } -//fprintf(stderr, "%3i ", ex); d_cm += ex; ex = 0; if ((cyc_do = SekCycleAimS68k-SekCycleCntS68k-cycn_s68k) > 0) { #if defined(EMU_C68K) - PicoCpuS68k.cycles = cyc_do; - CycloneRun(&PicoCpuS68k); - SekCycleCntS68k += cyc_do - PicoCpuS68k.cycles; + PicoCpuCS68k.cycles = cyc_do; + CycloneRun(&PicoCpuCS68k); + SekCycleCntS68k += cyc_do - PicoCpuCS68k.cycles; #elif defined(EMU_M68K) - m68k_set_context(&PicoS68kCPU); - SekCycleCntS68k += (ex = m68k_execute(cyc_do)); + m68k_set_context(&PicoCpuMS68k); + SekCycleCntS68k += m68k_execute(cyc_do); +#elif defined(EMU_F68K) + g_m68kcontext = &PicoCpuFS68k; + SekCycleCntS68k += fm68k_emulate(cyc_do, 0); #endif } -//fprintf(stderr, "%3i\n", ex); d_cs += ex; } - -//fprintf(stderr, "== end %3i/%3i ==\n", d_cm, d_cs); } #endif @@ -200,7 +215,7 @@ static __inline void update_chips(void) Pico_mcd->m.timer_int3 -= counter_timer; if (Pico_mcd->m.timer_int3 < 0) { if (Pico_mcd->s68k_regs[0x33] & (1<<3)) { - dprintf("s68k: timer irq 3"); + elprintf(EL_INTS, "s68k: timer irq 3"); SekInterruptS68k(3); Pico_mcd->m.timer_int3 += int3_set << 16; } @@ -229,141 +244,25 @@ static __inline void update_chips(void) } -static int PicoFrameHintsMCD(void) +static __inline void getSamples(int y) { - struct PicoVideo *pv=&Pico.video; - int total_z80=0,lines,y,lines_vis = 224,z80CycleAim = 0,line_sample; - const int cycles_68k=488,cycles_z80=228,cycles_s68k=795; // both PAL and NTSC compile to same values - int skip=PicoSkipFrame || (PicoOpt&0x10); - int hint; // Hint counter - - if(Pico.m.pal) { // - //cycles_68k = (int) ((double) OSC_PAL / 7 / 50 / 312 + 0.4); // should compile to a constant (488) - //cycles_z80 = (int) ((double) OSC_PAL / 15 / 50 / 312 + 0.4); // 228 - lines = 312; // Steve Snake says there are 313 lines, but this seems to also work well - line_sample = 68; - if(pv->reg[1]&8) lines_vis = 240; - } else { - //cycles_68k = (int) ((double) OSC_NTSC / 7 / 60 / 262 + 0.4); // 488 - //cycles_z80 = (int) ((double) OSC_NTSC / 15 / 60 / 262 + 0.4); // 228 - lines = 262; - line_sample = 93; - } - - SekCyclesReset(); - SekCyclesResetS68k(); - //z80ExtraCycles = 0; - - if(PicoOpt&4) - z80CycleAim = 0; -// z80_resetCycles(); - - pv->status&=~0x88; // clear V-Int, come out of vblank - - hint=pv->reg[10]; // Load H-Int counter - //dprintf("-hint: %i", hint); - - for (y=0;y 25) Pico.m.padTHPhase[0]=0; - if(Pico.m.padDelay[1]++ > 25) Pico.m.padTHPhase[1]=0; - } - - check_cd_dma(); - - // H-Interrupts: - if(y <= lines_vis && --hint < 0) // y <= lines_vis: Comix Zone, Golden Axe - { - //dprintf("rhint:old @ %06x", SekPc); - hint=pv->reg[10]; // Reload H-Int counter - pv->pending_ints|=0x10; - if (pv->reg[0]&0x10) SekInterrupt(4); - //dprintf("rhint: %i @ %06x [%i|%i]", hint, SekPc, y, SekCycleCnt); - //dprintf("hint_routine: %x", (*(unsigned short*)(Pico.ram+0x0B84)<<16)|*(unsigned short*)(Pico.ram+0x0B86)); - } - - // V-Interrupt: - if (y == lines_vis) - { - //dprintf("vint: @ %06x [%i|%i]", SekPc, y, SekCycleCnt); - pv->status|=0x88; // V-Int happened, go into vblank - SekRun(128); SekCycleAim-=128; // there must be a gap between H and V ints, also after vblank bit set (Mazin Saga, Bram Stoker's Dracula) - /*if(Pico.m.z80Run && (PicoOpt&4)) { - z80CycleAim+=cycles_z80/2; - total_z80+=z80_run(z80CycleAim-total_z80); - z80CycleAim-=cycles_z80/2; - }*/ - pv->pending_ints|=0x20; - if(pv->reg[1]&0x20) SekInterrupt(6); - if(Pico.m.z80Run && (PicoOpt&4)) // ? - z80_int(); - //dprintf("zint: [%i|%i] zPC=%04x", Pico.m.scanline, SekCyclesDone(), mz80GetRegisterValue(NULL, 0)); - } - - // decide if we draw this line -#if CAN_HANDLE_240_LINES - if(!skip && ((!(pv->reg[1]&8) && y<224) || ((pv->reg[1]&8) && y<240)) ) -#else - if(!skip && y<224) -#endif - PicoLine(y); - - if(PicoOpt&1) - sound_timers_and_dac(y); - - // get samples from sound chips - if (y == 224 && PsndOut) { - int len = sound_render(0, PsndLen); - if (PicoWriteSound) PicoWriteSound(len); - // clear sound buffer - sound_clear(); - } - - // Run scanline: - //dprintf("m68k starting exec @ %06x", SekPc); - if (Pico.m.dma_bytes) SekCycleCnt+=CheckDMA(); - if ((PicoOpt & 0x2000) && (Pico_mcd->m.busreq&3) == 1) { - SekRunPS(cycles_68k, cycles_s68k); // "better/perfect sync" - } else { - SekRun(cycles_68k); - if ((Pico_mcd->m.busreq&3) == 1) // no busreq/no reset - SekRunS68k(cycles_s68k); - } - - if ((PicoOpt&4) && Pico.m.z80Run) { - if (Pico.m.z80Run & 2) z80CycleAim+=cycles_z80; - else { - int cnt = SekCyclesDone() - z80startCycle; - cnt = (cnt>>1)-(cnt>>5); - //if (cnt > cycles_z80) printf("FIXME: z80 cycles: %i\n", cnt); - if (cnt > cycles_z80) cnt = cycles_z80; - Pico.m.z80Run |= 2; - z80CycleAim+=cnt; - } - total_z80+=z80_run(z80CycleAim-total_z80); - } - - update_chips(); - } + int len = PsndRender(0, PsndLen); + if (PicoWriteSound) PicoWriteSound(len); + // clear sound buffer + PsndClear(); +} - // draw a frame just after vblank in alternative render mode - if (!PicoSkipFrame && (PicoOpt&0x10)) - PicoFrameFull(); - return 0; -} +#define PICO_CD +#include "../PicoFrameHints.c" -int PicoFrameMCD(void) +PICO_INTERNAL int PicoFrameMCD(void) { if(!(PicoOpt&0x10)) PicoFrameStart(); - PicoFrameHintsMCD(); + PicoFrameHints(); return 0; }