1 // common code for Pico.c and cd/Pico.c
2 // (c) Copyright 2007,2008 Grazvydas "notaz" Ignotas
4 #define CYCLES_M68K_LINE 488 // suitable for both PAL/NTSC
5 #define CYCLES_M68K_VINT_LAG 68
6 #define CYCLES_M68K_ASD 148
7 #define CYCLES_S68K_LINE 795
8 #define CYCLES_S68K_ASD 241
10 // pad delay (for 6 button pads)
12 if (PicoOpt&POPT_6BTN_PAD) { \
13 if(Pico.m.padDelay[0]++ > 25) Pico.m.padTHPhase[0]=0; \
14 if(Pico.m.padDelay[1]++ > 25) Pico.m.padTHPhase[1]=0; \
19 #define CPUS_RUN(m68k_cycles,s68k_cycles) \
20 SekRunM68k(m68k_cycles);
22 #define CPUS_RUN(m68k_cycles,s68k_cycles) \
24 if ((PicoOpt&POPT_EN_MCD_PSYNC) && (Pico_mcd->m.busreq&3) == 1) { \
25 SekRunPS(m68k_cycles, s68k_cycles); /* "better/perfect sync" */ \
27 SekRunM68k(m68k_cycles); \
28 if ((Pico_mcd->m.busreq&3) == 1) /* no busreq/no reset */ \
29 SekRunS68k(s68k_cycles); \
34 // Accurate but slower frame which does hints
35 static int PicoFrameHints(void)
37 struct PicoVideo *pv=&Pico.video;
38 int lines, y, lines_vis = 224, line_sample, skip, vcnt_wrap;
39 int hint; // Hint counter
41 pv->v_counter = Pico.m.scanline = 0;
43 if ((PicoOpt&POPT_ALT_RENDERER) && !PicoSkipFrame && (pv->reg[1]&0x40)) { // fast rend., display enabled
44 // draw a frame just after vblank in alternative render mode
45 // yes, this will cause 1 frame lag, but this is inaccurate mode anyway.
47 #ifdef DRAW_FINISH_FUNC
52 else skip=PicoSkipFrame;
56 if (pv->reg[1]&8) lines_vis = 240;
68 pv->status&=~0x88; // clear V-Int, come out of vblank
70 hint=pv->reg[10]; // Load H-Int counter
71 //dprintf("-hint: %i", hint);
73 // This is to make active scan longer (needed for Double Dragon 2, mainly)
74 CPUS_RUN(CYCLES_M68K_ASD, CYCLES_S68K_ASD);
76 for (y = 0; y < lines_vis; y++)
78 pv->v_counter = Pico.m.scanline = y;
79 if ((pv->reg[12]&6) == 6) { // interlace mode 2
81 pv->v_counter |= pv->v_counter >> 8;
82 pv->v_counter &= 0xff;
87 if (pv->lwrite_cnt <= 0) {
89 Pico.video.status|=0x200;
98 if (--hint < 0) // y <= lines_vis: Comix Zone, Golden Axe
100 hint=pv->reg[10]; // Reload H-Int counter
101 pv->pending_ints|=0x10;
102 if (pv->reg[0]&0x10) {
103 elprintf(EL_INTS, "hint: @ %06x [%i]", SekPc, SekCycleCnt);
108 // decide if we draw this line
109 if (!skip && (PicoOpt & POPT_ALT_RENDERER))
111 // find the right moment for frame renderer, when display is no longer blanked
112 if ((pv->reg[1]&0x40) || y > 100) {
114 #ifdef DRAW_FINISH_FUNC
122 // get samples from sound chips
123 if (y == 32 && PsndOut)
125 else if ((y == 224 || y == line_sample) && PsndOut)
127 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80))
128 PicoSyncZ80(SekCycleCnt);
129 if (ym2612.dacen && PsndDacLine <= y)
136 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
137 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
142 if (PicoLineHook) PicoLineHook(1);
148 if (DrawScanline < y)
149 PicoDrawSync(y - 1, 0);
150 #ifdef DRAW_FINISH_FUNC
155 // V-int line (224 or 240)
157 pv->v_counter = 0xe0; // bad for 240 mode
158 if ((pv->reg[12]&6) == 6) pv->v_counter = 0xc1;
162 Pico.video.status|=0x200;
172 hint=pv->reg[10]; // Reload H-Int counter
173 pv->pending_ints|=0x10;
174 //printf("rhint: %i @ %06x [%i|%i]\n", hint, SekPc, y, SekCycleCnt);
175 if (pv->reg[0]&0x10) SekInterrupt(4);
178 pv->status|=0x08; // go into vblank
179 pv->pending_ints|=0x20;
181 // the following SekRun is there for several reasons:
182 // there must be a delay after vblank bit is set and irq is asserted (Mazin Saga)
183 // also delay between F bit (bit 7) is set in SR and IRQ happens (Ex-Mutants)
184 // also delay between last H-int and V-int (Golden Axe 3)
185 SekRunM68k(CYCLES_M68K_VINT_LAG);
187 if (pv->reg[1]&0x20) {
188 elprintf(EL_INTS, "vint: @ %06x [%i]", SekPc, SekCycleCnt);
191 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80)) {
192 PicoSyncZ80(SekCycleCnt);
193 elprintf(EL_INTS, "zint");
197 // get samples from sound chips
203 if (ym2612.dacen && PsndDacLine <= y)
209 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
210 CPUS_RUN(CYCLES_M68K_LINE - CYCLES_M68K_VINT_LAG - CYCLES_M68K_ASD,
211 CYCLES_S68K_LINE - CYCLES_S68K_ASD);
216 if (PicoLineHook) PicoLineHook(1);
219 // PAL line count might actually be 313 according to Steve Snake, but that would complicate things.
220 lines = Pico.m.pal ? 312 : 262;
221 vcnt_wrap = Pico.m.pal ? 0x103 : 0xEB; // based on Gens
223 for (y++; y < lines; y++)
225 pv->v_counter = Pico.m.scanline = y;
227 pv->v_counter -= Pico.m.pal ? 56 : 6;
228 if ((pv->reg[12]&6) == 6)
229 pv->v_counter = (pv->v_counter << 1) | 1;
230 pv->v_counter &= 0xff;
238 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
239 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
244 if (PicoLineHook) PicoLineHook(1);
249 if (Pico.m.z80Run && (PicoOpt&POPT_EN_Z80))
250 PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
251 if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)