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 && !Pico.m.z80_reset && (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();
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;
164 memcpy(PicoPadInt, PicoPad, sizeof(PicoPadInt));
173 hint=pv->reg[10]; // Reload H-Int counter
174 pv->pending_ints|=0x10;
175 //printf("rhint: %i @ %06x [%i|%i]\n", hint, SekPc, y, SekCycleCnt);
176 if (pv->reg[0]&0x10) SekInterrupt(4);
179 pv->status|=0x08; // go into vblank
180 pv->pending_ints|=0x20;
182 // the following SekRun is there for several reasons:
183 // there must be a delay after vblank bit is set and irq is asserted (Mazin Saga)
184 // also delay between F bit (bit 7) is set in SR and IRQ happens (Ex-Mutants)
185 // also delay between last H-int and V-int (Golden Axe 3)
186 SekRunM68k(CYCLES_M68K_VINT_LAG);
188 if (pv->reg[1]&0x20) {
189 elprintf(EL_INTS, "vint: @ %06x [%i]", SekPc, SekCycleCnt);
192 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80)) {
193 PicoSyncZ80(SekCycleCnt);
194 elprintf(EL_INTS, "zint");
198 // get samples from sound chips
204 if (ym2612.dacen && PsndDacLine <= y)
210 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
211 CPUS_RUN(CYCLES_M68K_LINE - CYCLES_M68K_VINT_LAG - CYCLES_M68K_ASD,
212 CYCLES_S68K_LINE - CYCLES_S68K_ASD);
217 if (PicoLineHook) PicoLineHook();
220 // PAL line count might actually be 313 according to Steve Snake, but that would complicate things.
221 lines = Pico.m.pal ? 312 : 262;
222 vcnt_wrap = Pico.m.pal ? 0x103 : 0xEB; // based on Gens
224 for (y++; y < lines; y++)
226 pv->v_counter = Pico.m.scanline = y;
228 pv->v_counter -= Pico.m.pal ? 56 : 6;
229 if ((pv->reg[12]&6) == 6)
230 pv->v_counter = (pv->v_counter << 1) | 1;
231 pv->v_counter &= 0xff;
239 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
240 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
245 if (PicoLineHook) PicoLineHook();
250 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
251 PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
252 if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)