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