sms: add pause support
[picodrive.git] / pico / 32x / 32x.c
CommitLineData
cff531af 1/*
2 * PicoDrive
6a98f03e 3 * (C) notaz, 2009,2010,2013
cff531af 4 *
5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
7 */
be2c4208 8#include "../pico_int.h"
974fdb5b 9#include "../sound/ym2612.h"
51d86e55 10#include "../../cpu/sh2/compiler.h"
be2c4208 11
12struct Pico32x Pico32x;
83ff19ec 13SH2 sh2s[2];
be2c4208 14
19886062 15#define SH2_IDLE_STATES (SH2_STATE_CPOLL|SH2_STATE_VPOLL|SH2_STATE_SLEEP)
16
e05b81fc 17static int REGPARM(2) sh2_irq_cb(SH2 *sh2, int level)
4ea707e1 18{
e05b81fc 19 if (sh2->pending_irl > sh2->pending_int_irq) {
f8675e28 20 elprintf_sh2(sh2, EL_32X, "ack/irl %d @ %08x",
21 level, sh2_pc(sh2));
e05b81fc 22 return 64 + sh2->pending_irl / 2;
23 } else {
f8675e28 24 elprintf_sh2(sh2, EL_32X, "ack/int %d/%d @ %08x",
25 level, sh2->pending_int_vector, sh2_pc(sh2));
e05b81fc 26 sh2->pending_int_irq = 0; // auto-clear
27 sh2->pending_level = sh2->pending_irl;
28 return sh2->pending_int_vector;
29 }
4ea707e1 30}
31
c1931173 32// MUST specify active_sh2 when called from sh2 memhandlers
4d5dfee8 33void p32x_update_irls(SH2 *active_sh2, int m68k_cycles)
4ea707e1 34{
35 int irqs, mlvl = 0, slvl = 0;
a8fd6e37 36 int mrun, srun;
4ea707e1 37
19886062 38 if (active_sh2 != NULL)
39 m68k_cycles = sh2_cycles_done_m68k(active_sh2);
40
4ea707e1 41 // msh2
9e1fa0a6 42 irqs = Pico32x.sh2irqs | Pico32x.sh2irqi[0];
4ea707e1 43 while ((irqs >>= 1))
44 mlvl++;
45 mlvl *= 2;
46
47 // ssh2
9e1fa0a6 48 irqs = Pico32x.sh2irqs | Pico32x.sh2irqi[1];
4ea707e1 49 while ((irqs >>= 1))
50 slvl++;
51 slvl *= 2;
52
c1931173 53 mrun = sh2_irl_irq(&msh2, mlvl, active_sh2 == &msh2);
54 if (mrun) {
19886062 55 p32x_sh2_poll_event(&msh2, SH2_IDLE_STATES, m68k_cycles);
c1931173 56 if (active_sh2 == &msh2)
57 sh2_end_run(active_sh2, 1);
58 }
19886062 59
c1931173 60 srun = sh2_irl_irq(&ssh2, slvl, active_sh2 == &ssh2);
61 if (srun) {
19886062 62 p32x_sh2_poll_event(&ssh2, SH2_IDLE_STATES, m68k_cycles);
c1931173 63 if (active_sh2 == &ssh2)
64 sh2_end_run(active_sh2, 1);
65 }
19886062 66
a8fd6e37 67 elprintf(EL_32X, "update_irls: m %d/%d, s %d/%d", mlvl, mrun, slvl, srun);
4ea707e1 68}
69
9e1fa0a6 70// the mask register is inconsistent, CMD is supposed to be a mask,
71// while others are actually irq trigger enables?
72// TODO: test on hw..
73void p32x_trigger_irq(SH2 *sh2, int m68k_cycles, unsigned int mask)
74{
75 Pico32x.sh2irqs |= mask & P32XI_VRES;
76 Pico32x.sh2irqi[0] |= mask & (Pico32x.sh2irq_mask[0] << 3);
77 Pico32x.sh2irqi[1] |= mask & (Pico32x.sh2irq_mask[1] << 3);
78
79 p32x_update_irls(sh2, m68k_cycles);
80}
81
82void p32x_update_cmd_irq(SH2 *sh2, int m68k_cycles)
83{
84 if ((Pico32x.sh2irq_mask[0] & 2) && (Pico32x.regs[2 / 2] & 1))
85 Pico32x.sh2irqi[0] |= P32XI_CMD;
86 else
87 Pico32x.sh2irqi[0] &= ~P32XI_CMD;
88
89 if ((Pico32x.sh2irq_mask[1] & 2) && (Pico32x.regs[2 / 2] & 2))
90 Pico32x.sh2irqi[1] |= P32XI_CMD;
91 else
92 Pico32x.sh2irqi[1] &= ~P32XI_CMD;
93
94 p32x_update_irls(sh2, m68k_cycles);
95}
96
be2c4208 97void Pico32xStartup(void)
98{
99 elprintf(EL_STATUS|EL_32X, "32X startup");
100
679af8a3 101 // TODO: OOM handling
be2c4208 102 PicoAHW |= PAHW_32X;
f81107f5 103 sh2_init(&msh2, 0, &ssh2);
4ea707e1 104 msh2.irq_callback = sh2_irq_cb;
f81107f5 105 sh2_init(&ssh2, 1, &msh2);
4ea707e1 106 ssh2.irq_callback = sh2_irq_cb;
83ff19ec 107
108 PicoMemSetup32x();
045a4c52 109 p32x_pwm_ctl_changed();
a8fd6e37 110 p32x_timers_recalc();
acd35d4c 111
be2c4208 112 if (!Pico.m.pal)
974fdb5b 113 Pico32x.vdp_regs[0] |= P32XV_nPAL;
be2c4208 114
2446536b 115 rendstatus_old = -1;
116
974fdb5b 117 emu_32x_startup();
be2c4208 118}
119
83ff19ec 120#define HWSWAP(x) (((x) << 16) | ((x) >> 16))
121void p32x_reset_sh2s(void)
122{
123 elprintf(EL_32X, "sh2 reset");
124
125 sh2_reset(&msh2);
126 sh2_reset(&ssh2);
cd0ace28 127 sh2_peripheral_reset(&msh2);
128 sh2_peripheral_reset(&ssh2);
83ff19ec 129
130 // if we don't have BIOS set, perform it's work here.
131 // MSH2
132 if (p32x_bios_m == NULL) {
133 unsigned int idl_src, idl_dst, idl_size; // initial data load
134 unsigned int vbr;
135
136 // initial data
137 idl_src = HWSWAP(*(unsigned int *)(Pico.rom + 0x3d4)) & ~0xf0000000;
138 idl_dst = HWSWAP(*(unsigned int *)(Pico.rom + 0x3d8)) & ~0xf0000000;
139 idl_size= HWSWAP(*(unsigned int *)(Pico.rom + 0x3dc));
140 if (idl_size > Pico.romsize || idl_src + idl_size > Pico.romsize ||
141 idl_size > 0x40000 || idl_dst + idl_size > 0x40000 || (idl_src & 3) || (idl_dst & 3)) {
142 elprintf(EL_STATUS|EL_ANOMALY, "32x: invalid initial data ptrs: %06x -> %06x, %06x",
143 idl_src, idl_dst, idl_size);
144 }
145 else
146 memcpy(Pico32xMem->sdram + idl_dst, Pico.rom + idl_src, idl_size);
147
148 // GBR/VBR
149 vbr = HWSWAP(*(unsigned int *)(Pico.rom + 0x3e8));
150 sh2_set_gbr(0, 0x20004000);
151 sh2_set_vbr(0, vbr);
152
153 // checksum and M_OK
154 Pico32x.regs[0x28 / 2] = *(unsigned short *)(Pico.rom + 0x18e);
155 // program will set M_OK
156 }
157
158 // SSH2
159 if (p32x_bios_s == NULL) {
160 unsigned int vbr;
161
162 // GBR/VBR
163 vbr = HWSWAP(*(unsigned int *)(Pico.rom + 0x3ec));
164 sh2_set_gbr(1, 0x20004000);
165 sh2_set_vbr(1, vbr);
166 // program will set S_OK
167 }
ed4402a7 168
ae214f1c 169 msh2.m68krcycles_done = ssh2.m68krcycles_done = SekCyclesDone();
83ff19ec 170}
171
be2c4208 172void Pico32xInit(void)
173{
ed4402a7 174 if (msh2.mult_m68k_to_sh2 == 0 || msh2.mult_sh2_to_m68k == 0)
175 Pico32xSetClocks(PICO_MSH2_HZ, 0);
176 if (ssh2.mult_m68k_to_sh2 == 0 || ssh2.mult_sh2_to_m68k == 0)
177 Pico32xSetClocks(0, PICO_MSH2_HZ);
974fdb5b 178}
179
180void PicoPower32x(void)
181{
182 memset(&Pico32x, 0, sizeof(Pico32x));
5e49c3a8 183
83ff19ec 184 Pico32x.regs[0] = P32XS_REN|P32XS_nRES; // verified
4a1fb183 185 Pico32x.vdp_regs[0x0a/2] = P32XV_VBLK|P32XV_PEN;
87accdf7 186 Pico32x.sh2_regs[0] = P32XS2_ADEN;
be2c4208 187}
188
5e49c3a8 189void PicoUnload32x(void)
190{
191 if (Pico32xMem != NULL)
b081408f 192 plat_munmap(Pico32xMem, sizeof(*Pico32xMem));
5e49c3a8 193 Pico32xMem = NULL;
e898de13 194 sh2_finish(&msh2);
195 sh2_finish(&ssh2);
5e49c3a8 196
197 PicoAHW &= ~PAHW_32X;
198}
199
be2c4208 200void PicoReset32x(void)
201{
83ff19ec 202 if (PicoAHW & PAHW_32X) {
ae214f1c 203 msh2.m68krcycles_done = ssh2.m68krcycles_done = SekCyclesDone();
204 p32x_trigger_irq(NULL, SekCyclesDone(), P32XI_VRES);
19886062 205 p32x_sh2_poll_event(&msh2, SH2_IDLE_STATES, 0);
206 p32x_sh2_poll_event(&ssh2, SH2_IDLE_STATES, 0);
045a4c52 207 p32x_pwm_ctl_changed();
a8fd6e37 208 p32x_timers_recalc();
83ff19ec 209 }
be2c4208 210}
211
974fdb5b 212static void p32x_start_blank(void)
213{
7a961c19 214 if (Pico32xDrawMode != PDM32X_OFF && !PicoSkipFrame) {
5aec752d 215 int offs, lines;
216
217 pprof_start(draw);
218
219 offs = 8; lines = 224;
7a961c19 220 if ((Pico.video.reg[1] & 8) && !(PicoOpt & POPT_ALT_RENDERER)) {
221 offs = 0;
222 lines = 240;
223 }
224
225 // XXX: no proper handling of 32col mode..
5a681086 226 if ((Pico32x.vdp_regs[0] & P32XV_Mx) != 0 && // 32x not blanking
227 (Pico.video.reg[12] & 1) && // 40col mode
228 (PicoDrawMask & PDRAW_32X_ON))
229 {
230 int md_bg = Pico.video.reg[7] & 0x3f;
5a681086 231
232 // we draw full layer (not line-by-line)
233 PicoDraw32xLayer(offs, lines, md_bg);
234 }
7a961c19 235 else if (Pico32xDrawMode != PDM32X_32X_ONLY)
236 PicoDraw32xLayerMdOnly(offs, lines);
5aec752d 237
238 pprof_end(draw);
5a681086 239 }
240
974fdb5b 241 // enter vblank
242 Pico32x.vdp_regs[0x0a/2] |= P32XV_VBLK|P32XV_PEN;
243
4ea707e1 244 // FB swap waits until vblank
974fdb5b 245 if ((Pico32x.vdp_regs[0x0a/2] ^ Pico32x.pending_fb) & P32XV_FS) {
246 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_FS;
247 Pico32x.vdp_regs[0x0a/2] |= Pico32x.pending_fb;
248 Pico32xSwapDRAM(Pico32x.pending_fb ^ 1);
249 }
4ea707e1 250
ae214f1c 251 p32x_trigger_irq(NULL, SekCyclesDone(), P32XI_VINT);
19886062 252 p32x_sh2_poll_event(&msh2, SH2_STATE_VPOLL, 0);
253 p32x_sh2_poll_event(&ssh2, SH2_STATE_VPOLL, 0);
974fdb5b 254}
255
5ac99d9a 256void p32x_schedule_hint(SH2 *sh2, int m68k_cycles)
257{
258 // rather rough, 32x hint is useless in practice
259 int after;
260
261 if (!((Pico32x.sh2irq_mask[0] | Pico32x.sh2irq_mask[1]) & 4))
262 return; // nobody cares
263 // note: when Pico.m.scanline is 224, SH2s might
264 // still be at scanline 93 (or so)
265 if (!(Pico32x.sh2_regs[0] & 0x80) && Pico.m.scanline > 224)
266 return;
267
268 after = (Pico32x.sh2_regs[4 / 2] + 1) * 488;
269 if (sh2 != NULL)
270 p32x_event_schedule_sh2(sh2, P32X_EVENT_HINT, after);
271 else
272 p32x_event_schedule(m68k_cycles, P32X_EVENT_HINT, after);
273}
274
a8fd6e37 275/* events */
a8fd6e37 276static void fillend_event(unsigned int now)
277{
278 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_nFEN;
19886062 279 p32x_sh2_poll_event(&msh2, SH2_STATE_VPOLL, now);
280 p32x_sh2_poll_event(&ssh2, SH2_STATE_VPOLL, now);
a8fd6e37 281}
282
5ac99d9a 283static void hint_event(unsigned int now)
284{
9e1fa0a6 285 p32x_trigger_irq(NULL, now, P32XI_HINT);
5ac99d9a 286 p32x_schedule_hint(NULL, now);
287}
288
a8fd6e37 289typedef void (event_cb)(unsigned int now);
290
ae214f1c 291/* times are in m68k (7.6MHz) cycles */
292unsigned int p32x_event_times[P32X_EVENT_COUNT];
a8fd6e37 293static unsigned int event_time_next;
ae214f1c 294static event_cb *p32x_event_cbs[P32X_EVENT_COUNT] = {
df63f1a6 295 [P32X_EVENT_PWM] = p32x_pwm_irq_event,
a8fd6e37 296 [P32X_EVENT_FILLEND] = fillend_event,
5ac99d9a 297 [P32X_EVENT_HINT] = hint_event,
a8fd6e37 298};
299
19886062 300// schedule event at some time 'after', in m68k clocks
301void p32x_event_schedule(unsigned int now, enum p32x_event event, int after)
a8fd6e37 302{
19886062 303 unsigned int when;
304
305 when = (now + after) | 1;
a8fd6e37 306
ae214f1c 307 elprintf(EL_32X, "32x: new event #%u %u->%u", event, now, when);
308 p32x_event_times[event] = when;
a8fd6e37 309
19886062 310 if (event_time_next == 0 || CYCLES_GT(event_time_next, when))
a8fd6e37 311 event_time_next = when;
312}
313
19886062 314void p32x_event_schedule_sh2(SH2 *sh2, enum p32x_event event, int after)
315{
316 unsigned int now = sh2_cycles_done_m68k(sh2);
317 int left_to_next;
318
319 p32x_event_schedule(now, event, after);
320
321 left_to_next = (event_time_next - now) * 3;
c1931173 322 sh2_end_run(sh2, left_to_next);
19886062 323}
324
ae214f1c 325static void p32x_run_events(unsigned int until)
a8fd6e37 326{
327 int oldest, oldest_diff, time;
328 int i, diff;
329
330 while (1) {
331 oldest = -1, oldest_diff = 0x7fffffff;
332
333 for (i = 0; i < P32X_EVENT_COUNT; i++) {
ae214f1c 334 if (p32x_event_times[i]) {
335 diff = p32x_event_times[i] - until;
a8fd6e37 336 if (diff < oldest_diff) {
337 oldest_diff = diff;
338 oldest = i;
339 }
340 }
341 }
342
343 if (oldest_diff <= 0) {
ae214f1c 344 time = p32x_event_times[oldest];
345 p32x_event_times[oldest] = 0;
346 elprintf(EL_32X, "32x: run event #%d %u", oldest, time);
347 p32x_event_cbs[oldest](time);
a8fd6e37 348 }
349 else if (oldest_diff < 0x7fffffff) {
ae214f1c 350 event_time_next = p32x_event_times[oldest];
a8fd6e37 351 break;
352 }
353 else {
354 event_time_next = 0;
355 break;
356 }
357 }
358
359 if (oldest != -1)
ae214f1c 360 elprintf(EL_32X, "32x: next event #%d at %u",
361 oldest, event_time_next);
a8fd6e37 362}
363
19886062 364static inline void run_sh2(SH2 *sh2, int m68k_cycles)
365{
366 int cycles, done;
367
368 pevt_log_sh2_o(sh2, EVT_RUN_START);
369 sh2->state |= SH2_STATE_RUN;
370 cycles = C_M68K_TO_SH2(*sh2, m68k_cycles);
f8675e28 371 elprintf_sh2(sh2, EL_32X, "+run %u %d @%08x",
372 sh2->m68krcycles_done, cycles, sh2->pc);
19886062 373
374 done = sh2_execute(sh2, cycles);
375
376 sh2->m68krcycles_done += C_SH2_TO_M68K(*sh2, done);
377 sh2->state &= ~SH2_STATE_RUN;
378 pevt_log_sh2_o(sh2, EVT_RUN_END);
f8675e28 379 elprintf_sh2(sh2, EL_32X, "-run %u %d",
380 sh2->m68krcycles_done, done);
19886062 381}
382
383// sync other sh2 to this one
384// note: recursive call
385void p32x_sync_other_sh2(SH2 *sh2, unsigned int m68k_target)
386{
f81107f5 387 SH2 *osh2 = sh2->other_sh2;
19886062 388 int left_to_event;
389 int m68k_cycles;
390
391 if (osh2->state & SH2_STATE_RUN)
392 return;
393
394 m68k_cycles = m68k_target - osh2->m68krcycles_done;
395 if (m68k_cycles < 200)
396 return;
397
398 if (osh2->state & SH2_IDLE_STATES) {
399 osh2->m68krcycles_done = m68k_target;
400 return;
401 }
402
f8675e28 403 elprintf_sh2(osh2, EL_32X, "sync to %u %d",
404 m68k_target, m68k_cycles);
19886062 405
406 run_sh2(osh2, m68k_cycles);
407
408 // there might be new event to schedule current sh2 to
409 if (event_time_next) {
410 left_to_event = event_time_next - m68k_target;
411 left_to_event *= 3;
412 if (sh2_cycles_left(sh2) > left_to_event) {
413 if (left_to_event < 1)
414 left_to_event = 1;
415 sh2_end_run(sh2, left_to_event);
416 }
417 }
418}
a8fd6e37 419
ed4402a7 420#define sync_sh2s_normal p32x_sync_sh2s
421//#define sync_sh2s_lockstep p32x_sync_sh2s
974fdb5b 422
a8fd6e37 423/* most timing is in 68k clock */
ed4402a7 424void sync_sh2s_normal(unsigned int m68k_target)
425{
a8fd6e37 426 unsigned int now, target, timer_cycles;
19886062 427 int cycles;
ed4402a7 428
a8fd6e37 429 elprintf(EL_32X, "sh2 sync to %u", m68k_target);
ed4402a7 430
27e26273 431 if (!(Pico32x.regs[0] & P32XS_nRES)) {
432 msh2.m68krcycles_done = ssh2.m68krcycles_done = m68k_target;
ed4402a7 433 return; // rare
27e26273 434 }
ed4402a7 435
a8fd6e37 436 now = msh2.m68krcycles_done;
437 if (CYCLES_GT(now, ssh2.m68krcycles_done))
438 now = ssh2.m68krcycles_done;
439 timer_cycles = now;
440
441 while (CYCLES_GT(m68k_target, now))
ed4402a7 442 {
a8fd6e37 443 if (event_time_next && CYCLES_GE(now, event_time_next))
ae214f1c 444 p32x_run_events(now);
ed4402a7 445
a8fd6e37 446 target = m68k_target;
447 if (event_time_next && CYCLES_GT(target, event_time_next))
448 target = event_time_next;
449
450 while (CYCLES_GT(target, now))
451 {
452 elprintf(EL_32X, "sh2 exec to %u %d,%d/%d, flags %x", target,
453 target - msh2.m68krcycles_done, target - ssh2.m68krcycles_done,
454 m68k_target - now, Pico32x.emu_flags);
ed4402a7 455
19886062 456 if (!(ssh2.state & SH2_IDLE_STATES)) {
a8fd6e37 457 cycles = target - ssh2.m68krcycles_done;
458 if (cycles > 0) {
19886062 459 run_sh2(&ssh2, cycles);
a8fd6e37 460
461 if (event_time_next && CYCLES_GT(target, event_time_next))
462 target = event_time_next;
463 }
ed4402a7 464 }
465
19886062 466 if (!(msh2.state & SH2_IDLE_STATES)) {
a8fd6e37 467 cycles = target - msh2.m68krcycles_done;
468 if (cycles > 0) {
19886062 469 run_sh2(&msh2, cycles);
a8fd6e37 470
471 if (event_time_next && CYCLES_GT(target, event_time_next))
472 target = event_time_next;
473 }
ed4402a7 474 }
a8fd6e37 475
19886062 476 now = target;
477 if (!(msh2.state & SH2_IDLE_STATES)) {
478 if (CYCLES_GT(now, msh2.m68krcycles_done))
479 now = msh2.m68krcycles_done;
480 }
481 if (!(ssh2.state & SH2_IDLE_STATES)) {
482 if (CYCLES_GT(now, ssh2.m68krcycles_done))
483 now = ssh2.m68krcycles_done;
484 }
ed4402a7 485 }
a8fd6e37 486
045a4c52 487 p32x_timers_do(now - timer_cycles);
a8fd6e37 488 timer_cycles = now;
ed4402a7 489 }
19886062 490
491 // advance idle CPUs
492 if (msh2.state & SH2_IDLE_STATES) {
493 if (CYCLES_GT(m68k_target, msh2.m68krcycles_done))
494 msh2.m68krcycles_done = m68k_target;
495 }
496 if (ssh2.state & SH2_IDLE_STATES) {
497 if (CYCLES_GT(m68k_target, ssh2.m68krcycles_done))
498 ssh2.m68krcycles_done = m68k_target;
499 }
236990cf 500}
acd35d4c 501
c987bb5c 502#define STEP_68K 24
ed4402a7 503
504void sync_sh2s_lockstep(unsigned int m68k_target)
505{
506 unsigned int mcycles;
507
508 mcycles = msh2.m68krcycles_done;
509 if (ssh2.m68krcycles_done < mcycles)
510 mcycles = ssh2.m68krcycles_done;
511
512 while (mcycles < m68k_target) {
513 mcycles += STEP_68K;
514 sync_sh2s_normal(mcycles);
515 }
87accdf7 516}
517
ae214f1c 518#define CPUS_RUN(m68k_cycles) do { \
ed4402a7 519 SekRunM68k(m68k_cycles); \
ae214f1c 520 if ((Pico32x.emu_flags & P32XF_Z80_32X_IO) && Pico.m.z80Run \
521 && !Pico.m.z80_reset && (PicoOpt & POPT_EN_Z80)) \
522 PicoSyncZ80(SekCyclesDone()); \
19886062 523 if (Pico32x.emu_flags & (P32XF_68KCPOLL|P32XF_68KVPOLL)) \
ae214f1c 524 p32x_sync_sh2s(SekCyclesDone()); \
ed4402a7 525} while (0)
87accdf7 526
ed4402a7 527#define PICO_32X
974fdb5b 528#include "../pico_cmn.c"
529
530void PicoFrame32x(void)
531{
5ac99d9a 532 Pico.m.scanline = 0;
533
4ea707e1 534 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_VBLK; // get out of vblank
db1d3564 535 if ((Pico32x.vdp_regs[0] & P32XV_Mx) != 0) // no forced blanking
536 Pico32x.vdp_regs[0x0a/2] &= ~P32XV_PEN; // no palette access
4ea707e1 537
5ac99d9a 538 if (!(Pico32x.sh2_regs[0] & 0x80))
ae214f1c 539 p32x_schedule_hint(NULL, SekCyclesDone());
19886062 540 p32x_sh2_poll_event(&msh2, SH2_STATE_VPOLL, 0);
541 p32x_sh2_poll_event(&ssh2, SH2_STATE_VPOLL, 0);
974fdb5b 542
543 PicoFrameStart();
544 PicoFrameHints();
51d86e55 545 sh2_drc_frame();
546
19886062 547 elprintf(EL_32X, "poll: %02x %02x %02x",
548 Pico32x.emu_flags & 3, msh2.state, ssh2.state);
974fdb5b 549}
db1d3564 550
ed4402a7 551// calculate multipliers against 68k clock (7670442)
552// normally * 3, but effectively slower due to high latencies everywhere
553// however using something lower breaks MK2 animations
554void Pico32xSetClocks(int msh2_hz, int ssh2_hz)
555{
556 float m68k_clk = (float)(OSC_NTSC / 7);
557 if (msh2_hz > 0) {
558 msh2.mult_m68k_to_sh2 = (int)((float)msh2_hz * (1 << CYCLE_MULT_SHIFT) / m68k_clk);
559 msh2.mult_sh2_to_m68k = (int)(m68k_clk * (1 << CYCLE_MULT_SHIFT) / (float)msh2_hz);
560 }
561 if (ssh2_hz > 0) {
562 ssh2.mult_m68k_to_sh2 = (int)((float)ssh2_hz * (1 << CYCLE_MULT_SHIFT) / m68k_clk);
563 ssh2.mult_sh2_to_m68k = (int)(m68k_clk * (1 << CYCLE_MULT_SHIFT) / (float)ssh2_hz);
564 }
565}
566
27e26273 567void Pico32xStateLoaded(int is_early)
568{
569 if (is_early) {
570 Pico32xMemStateLoaded();
571 return;
572 }
573
ae214f1c 574 sh2s[0].m68krcycles_done = sh2s[1].m68krcycles_done = SekCyclesDone();
575 p32x_update_irls(NULL, SekCyclesDone());
df63f1a6 576 p32x_pwm_state_loaded();
ae214f1c 577 p32x_run_events(SekCyclesDone());
27e26273 578}
579
ed4402a7 580// vim:shiftwidth=2:ts=2:expandtab