5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
9 #include "../pico_int.h"
10 #include "../sound/ym2612.h"
12 extern unsigned char formatted_bram[4*0x10];
13 extern unsigned int s68k_poll_adclk;
15 void (*PicoMCDopenTray)(void) = NULL;
16 void (*PicoMCDcloseTray)(void) = NULL;
19 PICO_INTERNAL void PicoInitMCD(void)
25 PICO_INTERNAL void PicoExitMCD(void)
30 PICO_INTERNAL void PicoPowerMCD(void)
32 int fmt_size = sizeof(formatted_bram);
33 memset(Pico_mcd->prg_ram, 0, sizeof(Pico_mcd->prg_ram));
34 memset(Pico_mcd->word_ram2M, 0, sizeof(Pico_mcd->word_ram2M));
35 memset(Pico_mcd->pcm_ram, 0, sizeof(Pico_mcd->pcm_ram));
36 memset(Pico_mcd->bram, 0, sizeof(Pico_mcd->bram));
37 memcpy(Pico_mcd->bram + sizeof(Pico_mcd->bram) - fmt_size, formatted_bram, fmt_size);
40 PICO_INTERNAL int PicoResetMCD(void)
42 memset(Pico_mcd->s68k_regs, 0, sizeof(Pico_mcd->s68k_regs));
43 memset(&Pico_mcd->pcm, 0, sizeof(Pico_mcd->pcm));
44 memset(&Pico_mcd->m, 0, sizeof(Pico_mcd->m));
46 *(unsigned int *)(Pico_mcd->bios + 0x70) = 0xffffffff; // reset hint vector (simplest way to implement reg6)
47 Pico_mcd->m.state_flags |= 1; // s68k reset pending
48 Pico_mcd->s68k_regs[3] = 1; // 2M word RAM mode with m68k access after reset
53 #ifdef _ASM_CD_MEMORY_C
54 //PicoMemResetCDdecode(1); // don't have to call this in 2M mode
57 // use SRam.data for RAM cart
58 if (PicoOpt & POPT_EN_MCD_RAMCART) {
59 if (SRam.data == NULL)
60 SRam.data = calloc(1, 0x12000);
62 else if (SRam.data != NULL) {
66 SRam.start = SRam.end = 0; // unused
71 static __inline void SekRunS68k(int cyc)
75 if ((cyc_do=SekCycleAimS68k-SekCycleCntS68k) <= 0) return;
76 #if defined(EMU_CORE_DEBUG)
77 SekCycleCntS68k+=CM_compareRun(cyc_do, 1);
78 #elif defined(EMU_C68K)
79 PicoCpuCS68k.cycles=cyc_do;
80 CycloneRun(&PicoCpuCS68k);
81 SekCycleCntS68k+=cyc_do-PicoCpuCS68k.cycles;
82 #elif defined(EMU_M68K)
83 m68k_set_context(&PicoCpuMS68k);
84 SekCycleCntS68k+=m68k_execute(cyc_do);
85 m68k_set_context(&PicoCpuMM68k);
86 #elif defined(EMU_F68K)
87 g_m68kcontext=&PicoCpuFS68k;
88 SekCycleCntS68k+=fm68k_emulate(cyc_do, 0, 0);
89 g_m68kcontext=&PicoCpuFM68k;
93 #define PS_STEP_M68K ((488<<16)/20) // ~24
94 //#define PS_STEP_S68K 13
96 #if defined(_ASM_CD_PICO_C)
97 extern void SekRunPS(int cyc_m68k, int cyc_s68k);
98 #elif defined(EMU_F68K)
99 static __inline void SekRunPS(int cyc_m68k, int cyc_s68k)
101 SekCycleAim+=cyc_m68k;
102 SekCycleAimS68k+=cyc_s68k;
103 fm68k_emulate(0, 1, 0);
106 static __inline void SekRunPS(int cyc_m68k, int cyc_s68k)
108 int cycn, cycn_s68k, cyc_do;
109 SekCycleAim+=cyc_m68k;
110 SekCycleAimS68k+=cyc_s68k;
112 // fprintf(stderr, "=== start %3i/%3i [%3i/%3i] {%05i.%i} ===\n", cyc_m68k, cyc_s68k,
113 // SekCycleAim-SekCycleCnt, SekCycleAimS68k-SekCycleCntS68k, Pico.m.frame_count, Pico.m.scanline);
115 /* loop 488 downto 0 in steps of PS_STEP */
116 for (cycn = (488<<16)-PS_STEP_M68K; cycn >= 0; cycn -= PS_STEP_M68K)
118 cycn_s68k = (cycn + cycn/2 + cycn/8) >> 16;
119 if ((cyc_do = SekCycleAim-SekCycleCnt-(cycn>>16)) > 0) {
120 #if defined(EMU_C68K)
121 PicoCpuCM68k.cycles = cyc_do;
122 CycloneRun(&PicoCpuCM68k);
123 SekCycleCnt += cyc_do - PicoCpuCM68k.cycles;
124 #elif defined(EMU_M68K)
125 m68k_set_context(&PicoCpuMM68k);
126 SekCycleCnt += m68k_execute(cyc_do);
127 #elif defined(EMU_F68K)
128 g_m68kcontext = &PicoCpuFM68k;
129 SekCycleCnt += fm68k_emulate(cyc_do, 0, 0);
132 if ((cyc_do = SekCycleAimS68k-SekCycleCntS68k-cycn_s68k) > 0) {
133 #if defined(EMU_C68K)
134 PicoCpuCS68k.cycles = cyc_do;
135 CycloneRun(&PicoCpuCS68k);
136 SekCycleCntS68k += cyc_do - PicoCpuCS68k.cycles;
137 #elif defined(EMU_M68K)
138 m68k_set_context(&PicoCpuMS68k);
139 SekCycleCntS68k += m68k_execute(cyc_do);
140 #elif defined(EMU_F68K)
141 g_m68kcontext = &PicoCpuFS68k;
142 SekCycleCntS68k += fm68k_emulate(cyc_do, 0, 0);
150 static __inline void check_cd_dma(void)
154 if (!(Pico_mcd->scd.Status_CDC & 0x08)) return;
156 ddx = Pico_mcd->s68k_regs[4] & 7;
157 if (ddx < 2) return; // invalid
159 Pico_mcd->s68k_regs[4] |= 0x40; // Data set ready in host port
162 if (ddx == 6) return; // invalid
164 Update_CDC_TRansfer(ddx); // now go and do the actual transfer
167 static __inline void update_chips(void)
169 int counter_timer, int3_set;
170 int counter75hz_lim = Pico.m.pal ? 2080 : 2096;
173 if ((Pico_mcd->m.counter75hz+=10) >= counter75hz_lim) {
174 Pico_mcd->m.counter75hz -= counter75hz_lim;
179 counter_timer = Pico.m.pal ? 0x21630 : 0x2121c; // 136752 : 135708;
180 Pico_mcd->m.timer_stopwatch += counter_timer;
181 if ((int3_set = Pico_mcd->s68k_regs[0x31])) {
182 Pico_mcd->m.timer_int3 -= counter_timer;
183 if (Pico_mcd->m.timer_int3 < 0) {
184 if (Pico_mcd->s68k_regs[0x33] & (1<<3)) {
185 elprintf(EL_INTS, "s68k: timer irq 3");
187 Pico_mcd->m.timer_int3 += int3_set << 16;
189 // is this really what happens if irq3 is masked out?
190 Pico_mcd->m.timer_int3 &= 0xffffff;
195 if (Pico_mcd->rot_comp.Reg_58 & 0x8000)
201 #define CPUS_RUN(m68k_cycles,s68k_cycles) \
203 if ((PicoOpt&POPT_EN_MCD_PSYNC) && (Pico_mcd->m.busreq&3) == 1) { \
204 SekRunPS(m68k_cycles, s68k_cycles); /* "better/perfect sync" */ \
206 SekRunM68k(m68k_cycles); \
207 if ((Pico_mcd->m.busreq&3) == 1) /* no busreq/no reset */ \
208 SekRunS68k(s68k_cycles); \
211 #include "../pico_cmn.c"
214 PICO_INTERNAL void PicoFrameMCD(void)
216 if (!(PicoOpt&POPT_ALT_RENDERER))