32x: sh2 wip, main SH2 BIOS passes
[picodrive.git] / pico / pico_cmn.c
... / ...
CommitLineData
1// common code for Pico.c and cd/Pico.c
2// (c) Copyright 2007-2009 Grazvydas "notaz" Ignotas
3
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
9
10// pad delay (for 6 button pads)
11#define PAD_DELAY \
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; \
15 }
16
17// CPUS_RUN
18#ifndef RUN_SH2S
19#define RUN_SH2S
20#endif
21
22#ifndef PICO_CD
23#define CPUS_RUN(m68k_cycles,s68k_cycles) \
24{ \
25 SekRunM68k(m68k_cycles); \
26 RUN_SH2S \
27}
28#else
29#define CPUS_RUN(m68k_cycles,s68k_cycles) \
30{ \
31 if ((PicoOpt&POPT_EN_MCD_PSYNC) && (Pico_mcd->m.busreq&3) == 1) { \
32 SekRunPS(m68k_cycles, s68k_cycles); /* "better/perfect sync" */ \
33 } else { \
34 SekRunM68k(m68k_cycles); \
35 if ((Pico_mcd->m.busreq&3) == 1) /* no busreq/no reset */ \
36 SekRunS68k(s68k_cycles); \
37 } \
38}
39#endif
40
41static int PicoFrameHints(void)
42{
43 struct PicoVideo *pv=&Pico.video;
44 int lines, y, lines_vis = 224, line_sample, skip, vcnt_wrap;
45 int hint; // Hint counter
46
47 pv->v_counter = Pico.m.scanline = 0;
48
49 if ((PicoOpt&POPT_ALT_RENDERER) && !PicoSkipFrame && (pv->reg[1]&0x40)) { // fast rend., display enabled
50 // draw a frame just after vblank in alternative render mode
51 // yes, this will cause 1 frame lag, but this is inaccurate mode anyway.
52 PicoFrameFull();
53#ifdef DRAW_FINISH_FUNC
54 DRAW_FINISH_FUNC();
55#endif
56 skip = 1;
57 }
58 else skip=PicoSkipFrame;
59
60 if (Pico.m.pal) {
61 line_sample = 68;
62 if (pv->reg[1]&8) lines_vis = 240;
63 } else {
64 line_sample = 93;
65 }
66
67 SekCyclesReset();
68 z80_resetCycles();
69#ifdef PICO_CD
70 SekCyclesResetS68k();
71#endif
72 PsndDacLine = 0;
73 emustatus &= ~1;
74
75 pv->status&=~0x88; // clear V-Int, come out of vblank
76
77 hint=pv->reg[10]; // Load H-Int counter
78 //dprintf("-hint: %i", hint);
79
80 // This is to make active scan longer (needed for Double Dragon 2, mainly)
81 CPUS_RUN(CYCLES_M68K_ASD, CYCLES_S68K_ASD);
82
83 for (y = 0; y < lines_vis; y++)
84 {
85 pv->v_counter = Pico.m.scanline = y;
86 if ((pv->reg[12]&6) == 6) { // interlace mode 2
87 pv->v_counter <<= 1;
88 pv->v_counter |= pv->v_counter >> 8;
89 pv->v_counter &= 0xff;
90 }
91
92 // VDP FIFO
93 pv->lwrite_cnt -= 12;
94 if (pv->lwrite_cnt <= 0) {
95 pv->lwrite_cnt=0;
96 Pico.video.status|=0x200;
97 }
98
99 PAD_DELAY
100#ifdef PICO_CD
101 check_cd_dma();
102#endif
103
104 // H-Interrupts:
105 if (--hint < 0) // y <= lines_vis: Comix Zone, Golden Axe
106 {
107 hint=pv->reg[10]; // Reload H-Int counter
108 pv->pending_ints|=0x10;
109 if (pv->reg[0]&0x10) {
110 elprintf(EL_INTS, "hint: @ %06x [%i]", SekPc, SekCycleCnt);
111 SekInterrupt(4);
112 }
113 }
114
115 // decide if we draw this line
116 if (!skip && (PicoOpt & POPT_ALT_RENDERER))
117 {
118 // find the right moment for frame renderer, when display is no longer blanked
119 if ((pv->reg[1]&0x40) || y > 100) {
120 PicoFrameFull();
121#ifdef DRAW_FINISH_FUNC
122 DRAW_FINISH_FUNC();
123#endif
124 skip = 1;
125 }
126 }
127
128 // get samples from sound chips
129 if ((y == 224 || y == line_sample) && PsndOut)
130 {
131 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
132 PicoSyncZ80(SekCycleCnt);
133 if (ym2612.dacen && PsndDacLine <= y)
134 PsndDoDAC(y);
135 PsndGetSamples(y);
136 }
137
138 // Run scanline:
139 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
140 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
141
142#ifdef PICO_CD
143 update_chips();
144#else
145 if (PicoLineHook) PicoLineHook();
146#endif
147 }
148
149 if (!skip)
150 {
151 if (DrawScanline < y)
152 PicoDrawSync(y - 1, 0);
153#ifdef DRAW_FINISH_FUNC
154 DRAW_FINISH_FUNC();
155#endif
156 }
157
158 // V-int line (224 or 240)
159 Pico.m.scanline = y;
160 pv->v_counter = 0xe0; // bad for 240 mode
161 if ((pv->reg[12]&6) == 6) pv->v_counter = 0xc1;
162
163 // VDP FIFO
164 pv->lwrite_cnt=0;
165 Pico.video.status|=0x200;
166
167 memcpy(PicoPadInt, PicoPad, sizeof(PicoPadInt));
168 PAD_DELAY
169#ifdef PICO_CD
170 check_cd_dma();
171#endif
172
173 // Last H-Int:
174 if (--hint < 0)
175 {
176 hint=pv->reg[10]; // Reload H-Int counter
177 pv->pending_ints|=0x10;
178 //printf("rhint: %i @ %06x [%i|%i]\n", hint, SekPc, y, SekCycleCnt);
179 if (pv->reg[0]&0x10) SekInterrupt(4);
180 }
181
182 pv->status|=0x08; // go into vblank
183 pv->pending_ints|=0x20;
184
185#ifdef PICO_32X
186 p32x_start_blank();
187#endif
188
189 // the following SekRun is there for several reasons:
190 // there must be a delay after vblank bit is set and irq is asserted (Mazin Saga)
191 // also delay between F bit (bit 7) is set in SR and IRQ happens (Ex-Mutants)
192 // also delay between last H-int and V-int (Golden Axe 3)
193 SekRunM68k(CYCLES_M68K_VINT_LAG);
194
195 if (pv->reg[1]&0x20) {
196 elprintf(EL_INTS, "vint: @ %06x [%i]", SekPc, SekCycleCnt);
197 SekInterrupt(6);
198 }
199 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80)) {
200 PicoSyncZ80(SekCycleCnt);
201 elprintf(EL_INTS, "zint");
202 z80_int();
203 }
204
205 // get samples from sound chips
206 if (y == 224 && PsndOut)
207 {
208 if (ym2612.dacen && PsndDacLine <= y)
209 PsndDoDAC(y);
210 PsndGetSamples(y);
211 }
212
213 // Run scanline:
214 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
215 CPUS_RUN(CYCLES_M68K_LINE - CYCLES_M68K_VINT_LAG - CYCLES_M68K_ASD,
216 CYCLES_S68K_LINE - CYCLES_S68K_ASD);
217
218#ifdef PICO_CD
219 update_chips();
220#else
221 if (PicoLineHook) PicoLineHook();
222#endif
223
224 // PAL line count might actually be 313 according to Steve Snake, but that would complicate things.
225 lines = Pico.m.pal ? 312 : 262;
226 vcnt_wrap = Pico.m.pal ? 0x103 : 0xEB; // based on Gens
227
228 for (y++; y < lines; y++)
229 {
230 pv->v_counter = Pico.m.scanline = y;
231 if (y >= vcnt_wrap)
232 pv->v_counter -= Pico.m.pal ? 56 : 6;
233 if ((pv->reg[12]&6) == 6)
234 pv->v_counter = (pv->v_counter << 1) | 1;
235 pv->v_counter &= 0xff;
236
237 PAD_DELAY
238#ifdef PICO_CD
239 check_cd_dma();
240#endif
241
242 // Run scanline:
243 if (Pico.m.dma_xfers) SekCyclesBurn(CheckDMA());
244 CPUS_RUN(CYCLES_M68K_LINE, CYCLES_S68K_LINE);
245
246#ifdef PICO_CD
247 update_chips();
248#else
249 if (PicoLineHook) PicoLineHook();
250#endif
251 }
252
253 // sync z80
254 if (Pico.m.z80Run && !Pico.m.z80_reset && (PicoOpt&POPT_EN_Z80))
255 PicoSyncZ80(Pico.m.pal ? 151809 : 127671); // cycles adjusted for converter
256 if (PsndOut && ym2612.dacen && PsndDacLine <= lines-1)
257 PsndDoDAC(lines-1);
258
259 timers_cycle();
260
261 return 0;
262}
263
264#undef PAD_DELAY
265#undef CPUS_RUN
266