adjust z80 timing a bit
[picodrive.git] / pico / pico_cmn.c
CommitLineData
cff531af 1/*
89dbbf2b 2 * common code for base/cd/32x
3 * (C) notaz, 2007-2009,2013
cff531af 4 *
5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
7 */
8b99ab90 8
69996cb7 9#define CYCLES_M68K_LINE 488 // suitable for both PAL/NTSC
10#define CYCLES_M68K_VINT_LAG 68
69996cb7 11
12// pad delay (for 6 button pads)
531a8f38 13#define PAD_DELAY() { \
14 if(Pico.m.padDelay[0]++ > 25) Pico.m.padTHPhase[0]=0; \
15 if(Pico.m.padDelay[1]++ > 25) Pico.m.padTHPhase[1]=0; \
16}
69996cb7 17
bf5fbbb4 18// CPUS_RUN
c987bb5c 19#ifndef CPUS_RUN
ae214f1c 20#define CPUS_RUN(m68k_cycles) \
c987bb5c 21 SekRunM68k(m68k_cycles)
bf5fbbb4 22#endif
23
08769494 24// sync m68k to SekCycleAim
25static void SekSyncM68k(void)
ed4402a7 26{
27 int cyc_do;
28 pprof_start(m68k);
19886062 29 pevt_log_m68k_o(EVT_RUN_START);
ed4402a7 30
ae214f1c 31 while ((cyc_do = SekCycleAim - SekCycleCnt) > 0) {
32 SekCycleCnt += cyc_do;
33
34#if defined(EMU_C68K)
35 PicoCpuCM68k.cycles = cyc_do;
36 CycloneRun(&PicoCpuCM68k);
37 SekCycleCnt -= PicoCpuCM68k.cycles;
ed4402a7 38#elif defined(EMU_M68K)
ae214f1c 39 SekCycleCnt += m68k_execute(cyc_do) - cyc_do;
ed4402a7 40#elif defined(EMU_F68K)
99ade2ee 41 SekCycleCnt += fm68k_emulate(cyc_do, 0) - cyc_do;
ed4402a7 42#endif
ae214f1c 43 }
44
45 SekCyclesLeft = 0;
ed4402a7 46
12da51c2 47 SekTrace(0);
19886062 48 pevt_log_m68k_o(EVT_RUN_END);
ed4402a7 49 pprof_end(m68k);
50}
51
08769494 52static inline void SekRunM68k(int cyc)
53{
54 SekCycleAim += cyc;
e42a47e2 55 cyc = SekCycleAim - SekCycleCnt;
56 if (cyc <= 0)
57 return;
58 SekCycleCnt += cyc >> 6; // refresh slowdowns
08769494 59 SekSyncM68k();
60}
61
e42a47e2 62static void do_hint(struct PicoVideo *pv)
63{
64 pv->pending_ints |= 0x10;
65 if (pv->reg[0] & 0x10) {
66 elprintf(EL_INTS, "hint: @ %06x [%u]", SekPc, SekCyclesDone());
67 SekInterrupt(4);
68 }
69}
70
69996cb7 71static int PicoFrameHints(void)
72{
e42a47e2 73 struct PicoVideo *pv = &Pico.video;
74 int line_sample = Pico.m.pal ? 68 : 93;
75 int lines, y, lines_vis, skip;
76 int vcnt_wrap, vcnt_adj;
ae214f1c 77 unsigned int cycles;
69996cb7 78 int hint; // Hint counter
79
19886062 80 pevt_log_m68k_o(EVT_FRAME_START);
538a6098 81
602133e1 82 if ((PicoOpt&POPT_ALT_RENDERER) && !PicoSkipFrame && (pv->reg[1]&0x40)) { // fast rend., display enabled
03e4f2a3 83 // draw a frame just after vblank in alternative render mode
84 // yes, this will cause 1 frame lag, but this is inaccurate mode anyway.
85 PicoFrameFull();
86#ifdef DRAW_FINISH_FUNC
87 DRAW_FINISH_FUNC();
88#endif
89 skip = 1;
90 }
91 else skip=PicoSkipFrame;
92
3162a710 93 timing.m68c_frame_start = SekCyclesDone();
94 pv->v_counter = Pico.m.scanline = 0;
4b9c5888 95 z80_resetCycles();
4f2cdbf5 96 PsndStartFrame();
69996cb7 97
e42a47e2 98 // Load H-Int counter
99 hint = (pv->status & PVS_ACTIVE) ? pv->hint_cnt : pv->reg[10];
69996cb7 100
e42a47e2 101 pv->status |= PVS_ACTIVE;
69996cb7 102
e42a47e2 103 for (y = 0; ; y++)
69996cb7 104 {
9761a7d0 105 pv->v_counter = Pico.m.scanline = y;
106 if ((pv->reg[12]&6) == 6) { // interlace mode 2
107 pv->v_counter <<= 1;
108 pv->v_counter |= pv->v_counter >> 8;
109 pv->v_counter &= 0xff;
110 }
69996cb7 111
e42a47e2 112 if ((y == 224 && !(pv->reg[1] & 8)) || y == 240)
113 break;
114
69996cb7 115 // VDP FIFO
116 pv->lwrite_cnt -= 12;
117 if (pv->lwrite_cnt <= 0) {
e42a47e2 118 pv->lwrite_cnt = 0;
119 Pico.video.status |= SR_EMPT;
69996cb7 120 }
121
531a8f38 122 PAD_DELAY();
69996cb7 123
124 // H-Interrupts:
e42a47e2 125 if (--hint < 0)
69996cb7 126 {
e42a47e2 127 hint = pv->reg[10]; // Reload H-Int counter
128 do_hint(pv);
69996cb7 129 }
130
131 // decide if we draw this line
b6d7ac70 132 if (!skip && (PicoOpt & POPT_ALT_RENDERER))
fad24893 133 {
b6d7ac70 134 // find the right moment for frame renderer, when display is no longer blanked
135 if ((pv->reg[1]&0x40) || y > 100) {
136 PicoFrameFull();
fad24893 137#ifdef DRAW_FINISH_FUNC
b6d7ac70 138 DRAW_FINISH_FUNC();
fad24893 139#endif
b6d7ac70 140 skip = 1;
fad24893 141 }
142 }
69996cb7 143
69996cb7 144 // get samples from sound chips
7b3f44c6 145 if ((y == 224 || y == line_sample) && PsndOut)
4b9c5888 146 {
ae214f1c 147 cycles = SekCyclesDone();
148
be297089 149 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
ae214f1c 150 PicoSyncZ80(cycles);
ae214f1c 151#ifdef PICO_CD
fa8fb754 152 if (PicoAHW & PAHW_MCD)
153 pcd_sync_s68k(cycles, 0);
ae214f1c 154#endif
a8fd6e37 155#ifdef PICO_32X
ae214f1c 156 p32x_sync_sh2s(cycles);
a8fd6e37 157#endif
7b3f44c6 158 PsndGetSamples(y);
4b9c5888 159 }
69996cb7 160
161 // Run scanline:
53f948c9 162 line_base_cycles = SekCyclesDone();
69996cb7 163 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
ae214f1c 164 CPUS_RUN(CYCLES_M68K_LINE);
bf5fbbb4 165
b0677887 166 if (PicoLineHook) PicoLineHook();
19886062 167 pevt_log_m68k_o(EVT_NEXT_LINE);
69996cb7 168 }
169
e42a47e2 170 lines_vis = (pv->reg[1] & 8) ? 240 : 224;
171 if (y == lines_vis)
172 pv->status &= ~PVS_ACTIVE;
173
03e4f2a3 174 if (!skip)
b6d7ac70 175 {
ea38612f 176 if (Pico.est.DrawScanline < y)
b6d7ac70 177 PicoDrawSync(y - 1, 0);
178#ifdef DRAW_FINISH_FUNC
03e4f2a3 179 DRAW_FINISH_FUNC();
8ab3e3c1 180#endif
b6d7ac70 181 }
8ab3e3c1 182
69996cb7 183 // VDP FIFO
e42a47e2 184 pv->lwrite_cnt = 0;
185 Pico.video.status |= SR_EMPT;
69996cb7 186
5f9a0d16 187 memcpy(PicoPadInt, PicoPad, sizeof(PicoPadInt));
531a8f38 188 PAD_DELAY();
69996cb7 189
e42a47e2 190 // Last H-Int (normally):
69996cb7 191 if (--hint < 0)
192 {
e42a47e2 193 hint = pv->reg[10]; // Reload H-Int counter
194 do_hint(pv);
69996cb7 195 }
196
e42a47e2 197 pv->status |= SR_VB; // go into vblank
198 pv->pending_ints |= 0x20;
69996cb7 199
200 // the following SekRun is there for several reasons:
201 // there must be a delay after vblank bit is set and irq is asserted (Mazin Saga)
202 // also delay between F bit (bit 7) is set in SR and IRQ happens (Ex-Mutants)
203 // also delay between last H-int and V-int (Golden Axe 3)
53f948c9 204 line_base_cycles = SekCyclesDone();
a4dfdb6d 205 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
ae214f1c 206 CPUS_RUN(CYCLES_M68K_VINT_LAG);
4b9c5888 207
e42a47e2 208 if (pv->reg[1] & 0x20) {
209 elprintf(EL_INTS, "vint: @ %06x [%u]", SekPc, SekCyclesDone());
69996cb7 210 SekInterrupt(6);
211 }
ae214f1c 212
213 cycles = SekCyclesDone();
be297089 214 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80)) {
ae214f1c 215 PicoSyncZ80(cycles);
583ab72c 216 elprintf(EL_INTS, "zint");
69996cb7 217 z80_int();
583ab72c 218 }
69996cb7 219
ae214f1c 220#ifdef PICO_CD
fa8fb754 221 if (PicoAHW & PAHW_MCD)
222 pcd_sync_s68k(cycles, 0);
ae214f1c 223#endif
a8fd6e37 224#ifdef PICO_32X
ae214f1c 225 p32x_sync_sh2s(cycles);
a8fd6e37 226 p32x_start_blank();
227#endif
228
69996cb7 229 // get samples from sound chips
7b3f44c6 230 if (y == 224 && PsndOut)
7b3f44c6 231 PsndGetSamples(y);
69996cb7 232
233 // Run scanline:
e42a47e2 234 CPUS_RUN(CYCLES_M68K_LINE - CYCLES_M68K_VINT_LAG);
bf5fbbb4 235
b0677887 236 if (PicoLineHook) PicoLineHook();
19886062 237 pevt_log_m68k_o(EVT_NEXT_LINE);
69996cb7 238
e42a47e2 239 if (Pico.m.pal) {
240 lines = 313;
241 vcnt_wrap = 0x103;
242 vcnt_adj = 57;
243 }
244 else {
245 lines = 262;
246 vcnt_wrap = 0xEB;
247 vcnt_adj = 6;
248 }
69996cb7 249
e42a47e2 250 for (y++; y < lines - 1; y++)
69996cb7 251 {
9761a7d0 252 pv->v_counter = Pico.m.scanline = y;
253 if (y >= vcnt_wrap)
e42a47e2 254 pv->v_counter -= vcnt_adj;
9761a7d0 255 if ((pv->reg[12]&6) == 6)
256 pv->v_counter = (pv->v_counter << 1) | 1;
257 pv->v_counter &= 0xff;
69996cb7 258
531a8f38 259 PAD_DELAY();
69996cb7 260
e42a47e2 261 if ((pv->status & PVS_ACTIVE) && --hint < 0)
262 {
263 hint = pv->reg[10]; // Reload H-Int counter
264 do_hint(pv);
265 }
266
69996cb7 267 // Run scanline:
53f948c9 268 line_base_cycles = SekCyclesDone();
69996cb7 269 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
ae214f1c 270 CPUS_RUN(CYCLES_M68K_LINE);
bf5fbbb4 271
b0677887 272 if (PicoLineHook) PicoLineHook();
19886062 273 pevt_log_m68k_o(EVT_NEXT_LINE);
69996cb7 274 }
275
e42a47e2 276 pv->status &= ~SR_VB;
277
278 // last scanline
279 Pico.m.scanline = y;
280 pv->v_counter = 0xff;
281
282 PAD_DELAY();
283
284 if ((pv->status & PVS_ACTIVE) && --hint < 0)
285 {
286 hint = pv->reg[10]; // Reload H-Int counter
287 do_hint(pv);
288 }
289
290 // Run scanline:
291 line_base_cycles = SekCyclesDone();
292 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
293 CPUS_RUN(CYCLES_M68K_LINE);
294
295 if (PicoLineHook) PicoLineHook();
296 pevt_log_m68k_o(EVT_NEXT_LINE);
297
ae214f1c 298 // sync cpus
299 cycles = SekCyclesDone();
be297089 300 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
ae214f1c 301 PicoSyncZ80(cycles);
4f2cdbf5 302 if (PsndOut && ym2612.dacen && PsndDacLine < lines)
303 PsndDoDAC(lines - 1);
5d638db0 304 if (PsndOut && PsndPsgLine < lines)
305 PsndDoPSG(lines - 1);
4b9c5888 306
ae214f1c 307#ifdef PICO_CD
fa8fb754 308 if (PicoAHW & PAHW_MCD)
309 pcd_sync_s68k(cycles, 0);
ae214f1c 310#endif
a8fd6e37 311#ifdef PICO_32X
ae214f1c 312 p32x_sync_sh2s(cycles);
a8fd6e37 313#endif
e53704e6 314 timers_cycle();
315
e42a47e2 316 pv->hint_cnt = hint;
317
69996cb7 318 return 0;
319}
320
321#undef PAD_DELAY
bf5fbbb4 322#undef CPUS_RUN
69996cb7 323
ae214f1c 324// vim:shiftwidth=2:ts=2:expandtab