3 * iii. .cc. ..xx * // Internal, Cs, x
6 * a15100 F....... R.....EA F.....AC N...VHMP 4000 // Fm Ren nrEs Aden Cart heN V H cMd Pwm
7 * a15102 ........ ......SM ? 4002 // intS intM
8 * a15104 ........ ......10 ........ hhhhhhhh 4004 // bk1 bk0 Hint
9 * a15106 F....... .....SDR UE...... .....SDR 4006 // Full 68S Dma Rv fUll[fb] Empt[fb]
10 * a15108 (32bit DREQ src) 4008
11 * a1510c (32bit DREQ dst) 400c
12 * a15110 llllllll llllll00 4010 // DREQ Len
13 * a15112 (16bit FIFO reg) 4012
14 * a15114 ? (16bit VRES clr) 4014
15 * a15116 ? (16bit Vint clr) 4016
16 * a15118 ? (16bit Hint clr) 4018
17 * a1511a ........ .......C (16bit CMD clr) 401a // Cm
18 * a1511c ? (16bit PWM clr) 401c
20 * a15120 (16 bytes comm) 2020
23 #include "../pico_int.h"
24 #include "../memory.h"
26 #include "../../cpu/sh2/compiler.h"
32 #define ash2_end_run(x)
36 static const char str_mars[] = "MARS";
38 void *p32x_bios_g, *p32x_bios_m, *p32x_bios_s;
39 struct Pico32xMem *Pico32xMem;
41 static void bank_switch(int b);
44 #define POLL_THRESHOLD 6
47 u32 addr, cycles, cyc_max;
50 static struct poll_det m68k_poll, sh2_poll[2];
52 static int p32x_poll_detect(struct poll_det *pd, u32 a, u32 cycles, int is_vdp)
54 int ret = 0, flag = pd->flag;
59 if (a - 2 <= pd->addr && pd->addr <= a + 2 && cycles - pd->cycles <= pd->cyc_max) {
61 if (pd->cnt > POLL_THRESHOLD) {
62 if (!(Pico32x.emu_flags & flag)) {
63 elprintf(EL_32X, "%s poll addr %08x, cyc %u",
64 flag & (P32XF_68KPOLL|P32XF_68KVPOLL) ? "m68k" :
65 (flag & (P32XF_MSH2POLL|P32XF_MSH2VPOLL) ? "msh2" : "ssh2"), a, cycles - pd->cycles);
68 Pico32x.emu_flags |= flag;
80 static int p32x_poll_undetect(struct poll_det *pd, int is_vdp)
82 int ret = 0, flag = pd->flag;
84 flag <<= 3; // VDP only
86 flag |= flag << 3; // both
87 if (Pico32x.emu_flags & flag) {
88 elprintf(EL_32X, "poll %02x -> %02x", Pico32x.emu_flags, Pico32x.emu_flags & ~flag);
91 Pico32x.emu_flags &= ~flag;
92 pd->addr = pd->cnt = 0;
96 void p32x_poll_event(int cpu_mask, int is_vdp)
99 p32x_poll_undetect(&sh2_poll[0], is_vdp);
101 p32x_poll_undetect(&sh2_poll[1], is_vdp);
108 static const u16 comm_fakevals[] = {
109 0x4d5f, 0x4f4b, // M_OK
110 0x535f, 0x4f4b, // S_OK
111 0x4D41, 0x5346, // MASF - Brutal Unleashed
112 0x5331, 0x4d31, // Darxide
115 0x0000, 0x0000, // eq for doom
116 0x0002, // Mortal Kombat
120 static u32 sh2_comm_faker(u32 a)
123 if (a == 0x28 && !p32x_csum_faked) {
125 return *(unsigned short *)(Pico.rom + 0x18e);
127 if (f >= sizeof(comm_fakevals) / sizeof(comm_fakevals[0]))
129 return comm_fakevals[f++];
135 unsigned int sar0, dar0, tcr0; // src addr, dst addr, transfer count
136 unsigned int chcr0; // chan ctl
137 unsigned int sar1, dar1, tcr1; // same for chan 1
143 static void dma_68k2sh2_do(void)
145 unsigned short *dreqlen = &Pico32x.regs[0x10 / 2];
148 if (dmac0->tcr0 != *dreqlen)
149 elprintf(EL_32X|EL_ANOMALY, "tcr0 and dreq len differ: %d != %d", dmac0->tcr0, *dreqlen);
151 // HACK: assume bus is busy and SH2 is halted
152 // XXX: use different mechanism for this, not poll det
153 Pico32x.emu_flags |= P32XF_MSH2POLL; // id ? P32XF_SSH2POLL : P32XF_MSH2POLL;
155 for (i = 0; i < Pico32x.dmac_ptr && dmac0->tcr0 > 0; i++) {
156 elprintf(EL_32X, "dmaw [%08x] %04x, left %d", dmac0->dar0, Pico32x.dmac_fifo[i], *dreqlen);
157 p32x_sh2_write16(dmac0->dar0, Pico32x.dmac_fifo[i], &msh2);
163 Pico32x.dmac_ptr = 0; // HACK
164 Pico32x.regs[6 / 2] &= ~P32XS_FULL;
166 Pico32x.regs[6 / 2] &= ~P32XS_68S; // transfer complete
167 if (dmac0->tcr0 == 0) {
168 dmac0->chcr0 |= 2; // DMA has ended normally
169 p32x_poll_undetect(&sh2_poll[0], 0);
173 // ------------------------------------------------------------------
176 static u32 p32x_reg_read16(u32 a)
180 if (a == 2) // INTM, INTS
181 return ((Pico32x.sh2irqi[0] & P32XI_CMD) >> 4) | ((Pico32x.sh2irqi[1] & P32XI_CMD) >> 3);
183 if ((a & 0x30) == 0x20)
184 return sh2_comm_faker(a);
186 if ((a & 0x30) == 0x20) {
187 // evil X-Men proto polls in a dbra loop and expects it to expire..
189 if (SekDar(2) != dr2)
193 if (p32x_poll_detect(&m68k_poll, a, SekCyclesDoneT(), 0)) {
201 if ((a & 0x30) == 0x30)
202 return p32x_pwm_read16(a);
204 return Pico32x.regs[a / 2];
207 static void p32x_reg_write8(u32 a, u32 d)
209 u16 *r = Pico32x.regs;
212 // for things like bset on comm port
216 case 0: // adapter ctl
217 r[0] = (r[0] & ~P32XS_FM) | ((d << 8) & P32XS_FM);
219 case 1: // adapter ctl, RES bit writeable
220 if ((d ^ r[0]) & d & P32XS_nRES)
222 r[0] = (r[0] & ~P32XS_nRES) | (d & P32XS_nRES);
225 if ((d & 1) && !(Pico32x.sh2irqi[0] & P32XI_CMD)) {
226 Pico32x.sh2irqi[0] |= P32XI_CMD;
230 if ((d & 2) && !(Pico32x.sh2irqi[1] & P32XI_CMD)) {
231 Pico32x.sh2irqi[1] |= P32XI_CMD;
244 r[6 / 2] = (r[6 / 2] & P32XS_FULL) | (d & (P32XS_68S|P32XS_DMA|P32XS_RV));
251 if ((a & 0x30) == 0x20) {
254 p32x_poll_undetect(&sh2_poll[0], 0);
255 p32x_poll_undetect(&sh2_poll[1], 0);
256 // if some SH2 is busy waiting, it needs to see the result ASAP
257 if (SekCyclesLeftNoMCD > 32)
263 static void p32x_reg_write16(u32 a, u32 d)
265 u16 *r = Pico32x.regs;
268 // for things like bset on comm port
272 case 0x00: // adapter ctl
273 if ((d ^ r[0]) & d & P32XS_nRES)
275 r[0] = (r[0] & ~(P32XS_FM|P32XS_nRES)) | (d & (P32XS_FM|P32XS_nRES));
277 case 0x10: // DREQ len
280 case 0x12: // FIFO reg
281 if (!(r[6 / 2] & P32XS_68S)) {
282 elprintf(EL_32X|EL_ANOMALY, "DREQ FIFO w16 without 68S?");
285 if (Pico32x.dmac_ptr < DMAC_FIFO_LEN) {
286 Pico32x.dmac_fifo[Pico32x.dmac_ptr++] = d;
287 if ((Pico32x.dmac_ptr & 3) == 0 && (dmac0->chcr0 & 3) == 1 && (dmac0->dmaor & 1))
289 if (Pico32x.dmac_ptr == DMAC_FIFO_LEN)
290 r[6 / 2] |= P32XS_FULL;
296 if ((a & 0x38) == 0x08) {
301 else if ((a & 0x30) == 0x20 && r[a / 2] != d) {
303 p32x_poll_undetect(&sh2_poll[0], 0);
304 p32x_poll_undetect(&sh2_poll[1], 0);
306 if (SekCyclesLeftNoMCD > 32)
311 else if ((a & 0x30) == 0x30) {
312 p32x_pwm_write16(a, d);
316 p32x_reg_write8(a + 1, d);
319 // ------------------------------------------------------------------
321 static u32 p32x_vdp_read16(u32 a)
325 return Pico32x.vdp_regs[a / 2];
328 static void p32x_vdp_write8(u32 a, u32 d)
330 u16 *r = Pico32x.vdp_regs;
333 // for FEN checks between writes
336 // TODO: verify what's writeable
339 // priority inversion is handled in palette
340 if ((r[0] ^ d) & P32XV_PRI)
341 Pico32x.dirty_pal = 1;
342 r[0] = (r[0] & P32XV_nPAL) | (d & 0xff);
344 case 0x03: // shift (for pp mode)
347 case 0x05: // fill len
352 Pico32x.pending_fb = d;
353 // if we are blanking and FS bit is changing
354 if (((r[0x0a/2] & P32XV_VBLK) || (r[0] & P32XV_Mx) == 0) && ((r[0x0a/2] ^ d) & P32XV_FS)) {
356 Pico32xSwapDRAM(d ^ 1);
357 elprintf(EL_32X, "VDP FS: %d", r[0x0a/2] & P32XV_FS);
363 static void p32x_vdp_write16(u32 a, u32 d)
366 if (a == 6) { // fill start
367 Pico32x.vdp_regs[6 / 2] = d;
370 if (a == 8) { // fill data
371 u16 *dram = Pico32xMem->dram[(Pico32x.vdp_regs[0x0a/2] & P32XV_FS) ^ 1];
372 int len = Pico32x.vdp_regs[4 / 2] + 1;
373 a = Pico32x.vdp_regs[6 / 2];
376 a = (a & 0xff00) | ((a + 1) & 0xff);
378 Pico32x.vdp_regs[6 / 2] = a;
379 Pico32x.vdp_regs[8 / 2] = d;
383 p32x_vdp_write8(a | 1, d);
386 // ------------------------------------------------------------------
389 static u32 p32x_sh2reg_read16(u32 a, int cpuid)
391 u16 *r = Pico32x.regs;
395 case 0x00: // adapter/irq ctl
396 return (r[0] & P32XS_FM) | Pico32x.sh2_regs[0] | Pico32x.sh2irq_mask[cpuid];
397 case 0x04: // H count (often as comm too)
398 if (p32x_poll_detect(&sh2_poll[cpuid], a, ash2_cycles_done(), 0))
400 return Pico32x.sh2_regs[4 / 2];
401 case 0x10: // DREQ len
406 if ((a & 0x38) == 0x08)
409 if ((a & 0x30) == 0x20) {
410 if (p32x_poll_detect(&sh2_poll[cpuid], a, ash2_cycles_done(), 0))
414 if ((a & 0x30) == 0x30) {
415 sh2_poll[cpuid].cnt = 0;
416 return p32x_pwm_read16(a);
422 static void p32x_sh2reg_write8(u32 a, u32 d, int cpuid)
427 Pico32x.regs[0] &= ~P32XS_FM;
428 Pico32x.regs[0] |= (d << 8) & P32XS_FM;
431 Pico32x.sh2irq_mask[cpuid] = d & 0x8f;
432 Pico32x.sh2_regs[0] &= ~0x80;
433 Pico32x.sh2_regs[0] |= d & 0x80;
437 Pico32x.sh2_regs[4 / 2] = d & 0xff;
438 p32x_poll_undetect(&sh2_poll[cpuid ^ 1], 0);
442 if ((a & 0x30) == 0x20) {
443 u8 *r8 = (u8 *)Pico32x.regs;
445 if (p32x_poll_undetect(&m68k_poll, 0))
447 p32x_poll_undetect(&sh2_poll[cpuid ^ 1], 0);
452 static void p32x_sh2reg_write16(u32 a, u32 d, int cpuid)
457 if ((a & 0x30) == 0x20 && Pico32x.regs[a/2] != d) {
458 Pico32x.regs[a / 2] = d;
459 if (p32x_poll_undetect(&m68k_poll, 0))
461 p32x_poll_undetect(&sh2_poll[cpuid ^ 1], 0);
465 else if ((a & 0x30) == 0x30) {
466 p32x_pwm_write16(a, d);
472 Pico32x.regs[0] &= ~P32XS_FM;
473 Pico32x.regs[0] |= d & P32XS_FM;
475 case 0x14: Pico32x.sh2irqs &= ~P32XI_VRES; goto irls;
476 case 0x16: Pico32x.sh2irqs &= ~P32XI_VINT; goto irls;
477 case 0x18: Pico32x.sh2irqs &= ~P32XI_HINT; goto irls;
478 case 0x1a: Pico32x.sh2irqi[cpuid] &= ~P32XI_CMD; goto irls;
480 Pico32x.sh2irqs &= ~P32XI_PWM;
485 p32x_sh2reg_write8(a | 1, d, cpuid);
492 // ------------------------------------------------------------------
493 // SH2 internal peripherals
494 // we keep them in little endian format
495 static u32 sh2_peripheral_read8(u32 a, int id)
497 u8 *r = (void *)Pico32xMem->sh2_peri_regs[id];
503 elprintf(EL_32X, "%csh2 peri r8 [%08x] %02x @%06x", id ? 's' : 'm', a | ~0x1ff, d, sh2_pc(id));
507 static u32 sh2_peripheral_read16(u32 a, int id)
509 u16 *r = (void *)Pico32xMem->sh2_peri_regs[id];
515 elprintf(EL_32X, "%csh2 peri r16 [%08x] %04x @%06x", id ? 's' : 'm', a | ~0x1ff, d, sh2_pc(id));
519 static u32 sh2_peripheral_read32(u32 a, int id)
523 d = Pico32xMem->sh2_peri_regs[id][a / 4];
525 elprintf(EL_32X, "%csh2 peri r32 [%08x] %08x @%06x", id ? 's' : 'm', a | ~0x1ff, d, sh2_pc(id));
529 static int REGPARM(3) sh2_peripheral_write8(u32 a, u32 d, int id)
531 u8 *r = (void *)Pico32xMem->sh2_peri_regs[id];
532 elprintf(EL_32X, "%csh2 peri w8 [%08x] %02x @%06x", id ? 's' : 'm', a, d, sh2_pc(id));
538 if ((a == 2 && (d & 0x20)) || // transmiter enabled
539 (a == 4 && !(d & 0x80))) { // valid data in TDR
540 void *oregs = Pico32xMem->sh2_peri_regs[id ^ 1];
541 if ((PREG8(oregs, 2) & 0x50) == 0x50) { // receiver + irq enabled
542 int level = PREG8(oregs, 0x60) >> 4;
543 int vector = PREG8(oregs, 0x63) & 0x7f;
544 elprintf(EL_32X, "%csh2 SCI recv irq (%d, %d)", (id ^ 1) ? 's' : 'm', level, vector);
545 sh2_internal_irq(&sh2s[id ^ 1], level, vector);
552 static int REGPARM(3) sh2_peripheral_write16(u32 a, u32 d, int id)
554 u16 *r = (void *)Pico32xMem->sh2_peri_regs[id];
555 elprintf(EL_32X, "%csh2 peri w16 [%08x] %04x @%06x", id ? 's' : 'm', a, d, sh2_pc(id));
561 if ((d & 0xff00) == 0xa500) { // WTCSR
563 p32x_timers_recalc();
565 if ((d & 0xff00) == 0x5a00) // WTCNT
574 static void sh2_peripheral_write32(u32 a, u32 d, int id)
576 u32 *r = Pico32xMem->sh2_peri_regs[id];
577 elprintf(EL_32X, "%csh2 peri w32 [%08x] %08x @%06x", id ? 's' : 'm', a, d, sh2_pc(id));
583 // division unit (TODO: verify):
584 case 0x104: // DVDNT: divident L, starts divide
585 elprintf(EL_32X, "%csh2 divide %08x / %08x", id ? 's' : 'm', d, r[0x100 / 4]);
587 signed int divisor = r[0x100 / 4];
588 r[0x118 / 4] = r[0x110 / 4] = (signed int)d % divisor;
589 r[0x104 / 4] = r[0x11c / 4] = r[0x114 / 4] = (signed int)d / divisor;
592 r[0x110 / 4] = r[0x114 / 4] = r[0x118 / 4] = r[0x11c / 4] = 0; // ?
595 elprintf(EL_32X, "%csh2 divide %08x%08x / %08x @%08x",
596 id ? 's' : 'm', r[0x110 / 4], d, r[0x100 / 4], sh2_pc(id));
598 signed long long divident = (signed long long)r[0x110 / 4] << 32 | d;
599 signed int divisor = r[0x100 / 4];
600 // XXX: undocumented mirroring to 0x118,0x11c?
601 r[0x118 / 4] = r[0x110 / 4] = divident % divisor;
603 r[0x11c / 4] = r[0x114 / 4] = divident;
605 if ((unsigned long long)divident + 1 > 1) {
606 //elprintf(EL_32X, "%csh2 divide overflow! @%08x", id ? 's' : 'm', sh2_pc(id));
607 r[0x11c / 4] = r[0x114 / 4] = divident > 0 ? 0x7fffffff : 0x80000000; // overflow
611 r[0x110 / 4] = r[0x114 / 4] = r[0x118 / 4] = r[0x11c / 4] = 0; // ?
615 if ((a == 0x1b0 || a == 0x18c) && (dmac0->chcr0 & 3) == 1 && (dmac0->dmaor & 1)) {
616 elprintf(EL_32X, "sh2 DMA %08x -> %08x, cnt %d, chcr %04x @%06x",
617 dmac0->sar0, dmac0->dar0, dmac0->tcr0, dmac0->chcr0, sh2_pc(id));
618 dmac0->tcr0 &= 0xffffff;
620 // HACK: assume 68k starts writing soon and end the timeslice
623 // DREQ is only sent after first 4 words are written.
624 // we do multiple of 4 words to avoid messing up alignment
625 if (dmac0->sar0 == 0x20004012 && Pico32x.dmac_ptr && (Pico32x.dmac_ptr & 3) == 0) {
626 elprintf(EL_32X, "68k -> sh2 DMA");
632 // ------------------------------------------------------------------
636 static u32 PicoRead8_32x_on(u32 a)
639 if ((a & 0xffc0) == 0x5100) { // a15100
640 d = p32x_reg_read16(a);
644 if ((a & 0xfc00) != 0x5000)
645 return PicoRead8_io(a);
647 if ((a & 0xfff0) == 0x5180) { // a15180
648 d = p32x_vdp_read16(a);
652 if ((a & 0xfe00) == 0x5200) { // a15200
653 d = Pico32xMem->pal[(a & 0x1ff) / 2];
657 if ((a & 0xfffc) == 0x30ec) { // a130ec
662 elprintf(EL_UIO, "m68k unmapped r8 [%06x] @%06x", a, SekPc);
672 elprintf(EL_32X, "m68k 32x r8 [%06x] %02x @%06x", a, d, SekPc);
676 static u32 PicoRead16_32x_on(u32 a)
679 if ((a & 0xffc0) == 0x5100) { // a15100
680 d = p32x_reg_read16(a);
684 if ((a & 0xfc00) != 0x5000)
685 return PicoRead16_io(a);
687 if ((a & 0xfff0) == 0x5180) { // a15180
688 d = p32x_vdp_read16(a);
692 if ((a & 0xfe00) == 0x5200) { // a15200
693 d = Pico32xMem->pal[(a & 0x1ff) / 2];
697 if ((a & 0xfffc) == 0x30ec) { // a130ec
698 d = !(a & 2) ? ('M'<<8)|'A' : ('R'<<8)|'S';
702 elprintf(EL_UIO, "m68k unmapped r16 [%06x] @%06x", a, SekPc);
706 elprintf(EL_32X, "m68k 32x r16 [%06x] %04x @%06x", a, d, SekPc);
710 static void PicoWrite8_32x_on(u32 a, u32 d)
712 if ((a & 0xfc00) == 0x5000)
713 elprintf(EL_32X, "m68k 32x w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
715 if ((a & 0xffc0) == 0x5100) { // a15100
716 p32x_reg_write8(a, d);
720 if ((a & 0xfc00) != 0x5000) {
725 if ((a & 0xfff0) == 0x5180) { // a15180
726 p32x_vdp_write8(a, d);
731 if ((a & 0xfe00) == 0x5200) { // a15200
732 elprintf(EL_32X|EL_ANOMALY, "m68k 32x PAL w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
733 ((u8 *)Pico32xMem->pal)[(a & 0x1ff) ^ 1] = d;
734 Pico32x.dirty_pal = 1;
738 elprintf(EL_UIO, "m68k unmapped w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
741 static void PicoWrite16_32x_on(u32 a, u32 d)
743 if ((a & 0xfc00) == 0x5000)
744 elprintf(EL_32X, "m68k 32x w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
746 if ((a & 0xffc0) == 0x5100) { // a15100
747 p32x_reg_write16(a, d);
751 if ((a & 0xfc00) != 0x5000) {
752 PicoWrite16_io(a, d);
756 if ((a & 0xfff0) == 0x5180) { // a15180
757 p32x_vdp_write16(a, d);
761 if ((a & 0xfe00) == 0x5200) { // a15200
762 Pico32xMem->pal[(a & 0x1ff) / 2] = d;
763 Pico32x.dirty_pal = 1;
767 elprintf(EL_UIO, "m68k unmapped w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
771 u32 PicoRead8_32x(u32 a)
774 if ((a & 0xffc0) == 0x5100) { // a15100
775 // regs are always readable
776 d = ((u8 *)Pico32x.regs)[(a & 0x3f) ^ 1];
780 if ((a & 0xfffc) == 0x30ec) { // a130ec
785 elprintf(EL_UIO, "m68k unmapped r8 [%06x] @%06x", a, SekPc);
789 elprintf(EL_32X, "m68k 32x r8 [%06x] %02x @%06x", a, d, SekPc);
793 u32 PicoRead16_32x(u32 a)
796 if ((a & 0xffc0) == 0x5100) { // a15100
797 d = Pico32x.regs[(a & 0x3f) / 2];
801 if ((a & 0xfffc) == 0x30ec) { // a130ec
802 d = !(a & 2) ? ('M'<<8)|'A' : ('R'<<8)|'S';
806 elprintf(EL_UIO, "m68k unmapped r16 [%06x] @%06x", a, SekPc);
810 elprintf(EL_32X, "m68k 32x r16 [%06x] %04x @%06x", a, d, SekPc);
814 void PicoWrite8_32x(u32 a, u32 d)
816 if ((a & 0xffc0) == 0x5100) { // a15100
817 u16 *r = Pico32x.regs;
819 elprintf(EL_32X, "m68k 32x w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
822 if ((d ^ r[0]) & d & P32XS_ADEN) {
824 r[0] &= ~P32XS_nRES; // causes reset if specified by this write
826 p32x_reg_write8(a, d); // forward for reset processing
831 // allow only COMM for now
832 if ((a & 0x30) == 0x20) {
839 elprintf(EL_UIO, "m68k unmapped w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
842 void PicoWrite16_32x(u32 a, u32 d)
844 if ((a & 0xffc0) == 0x5100) { // a15100
845 u16 *r = Pico32x.regs;
847 elprintf(EL_UIO, "m68k 32x w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
850 if ((d ^ r[0]) & d & P32XS_ADEN) {
852 r[0] &= ~P32XS_nRES; // causes reset if specified by this write
854 p32x_reg_write16(a, d); // forward for reset processing
859 // allow only COMM for now
860 if ((a & 0x30) == 0x20)
865 elprintf(EL_UIO, "m68k unmapped w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
868 // -----------------------------------------------------------------
870 // hint vector is writeable
871 static void PicoWrite8_hint(u32 a, u32 d)
873 if ((a & 0xfffc) == 0x0070) {
874 Pico32xMem->m68k_rom[a ^ 1] = d;
878 elprintf(EL_UIO, "m68k unmapped w8 [%06x] %02x @%06x", a, d & 0xff, SekPc);
881 static void PicoWrite16_hint(u32 a, u32 d)
883 if ((a & 0xfffc) == 0x0070) {
884 ((u16 *)Pico32xMem->m68k_rom)[a/2] = d;
888 elprintf(EL_UIO, "m68k unmapped w16 [%06x] %04x @%06x", a, d & 0xffff, SekPc);
891 static void bank_switch(int b)
893 unsigned int rs, bank;
896 if (bank >= Pico.romsize) {
897 elprintf(EL_32X|EL_ANOMALY, "missing bank @ %06x", bank);
901 // 32X ROM (unbanked, XXX: consider mirroring?)
902 rs = (Pico.romsize + M68K_BANK_MASK) & ~M68K_BANK_MASK;
906 cpu68k_map_set(m68k_read8_map, 0x900000, 0x900000 + rs - 1, Pico.rom + bank, 0);
907 cpu68k_map_set(m68k_read16_map, 0x900000, 0x900000 + rs - 1, Pico.rom + bank, 0);
909 elprintf(EL_32X, "bank %06x-%06x -> %06x", 0x900000, 0x900000 + rs - 1, bank);
912 // setup FAME fetchmap
913 for (rs = 0x90; rs < 0xa0; rs++)
914 PicoCpuFM68k.Fetch[rs] = (u32)Pico.rom + bank - 0x900000;
918 // -----------------------------------------------------------------
920 // -----------------------------------------------------------------
923 static u32 sh2_read8_unmapped(u32 a, int id)
925 elprintf(EL_UIO, "%csh2 unmapped r8 [%08x] %02x @%06x",
926 id ? 's' : 'm', a, 0, sh2_pc(id));
930 static u32 sh2_read8_cs0(u32 a, int id)
934 // 0x3ff00 is veridied
935 if ((a & 0x3ff00) == 0x4000) {
936 d = p32x_sh2reg_read16(a, id);
940 if ((a & 0x3ff00) == 0x4100) {
941 d = p32x_vdp_read16(a);
942 if (p32x_poll_detect(&sh2_poll[id], a, ash2_cycles_done(), 1))
948 if (id == 0 && a < sizeof(Pico32xMem->sh2_rom_m))
949 return Pico32xMem->sh2_rom_m[a ^ 1];
950 if (id == 1 && a < sizeof(Pico32xMem->sh2_rom_s))
951 return Pico32xMem->sh2_rom_s[a ^ 1];
953 if ((a & 0x3ff00) == 0x4200) {
954 d = Pico32xMem->pal[(a & 0x1ff) / 2];
958 return sh2_read8_unmapped(a, id);
966 elprintf(EL_32X, "%csh2 r8 [%08x] %02x @%06x",
967 id ? 's' : 'm', a, d, sh2_pc(id));
971 static u32 sh2_read8_da(u32 a, int id)
973 return Pico32xMem->data_array[id][(a & 0xfff) ^ 1];
977 static u32 sh2_read16_unmapped(u32 a, int id)
979 elprintf(EL_UIO, "%csh2 unmapped r16 [%08x] %04x @%06x",
980 id ? 's' : 'm', a, 0, sh2_pc(id));
984 static u32 sh2_read16_cs0(u32 a, int id)
988 if ((a & 0x3ff00) == 0x4000) {
989 d = p32x_sh2reg_read16(a, id);
990 if (!(EL_LOGMASK & EL_PWM) && (a & 0x30) == 0x30) // hide PWM
995 if ((a & 0x3ff00) == 0x4100) {
996 d = p32x_vdp_read16(a);
997 if (p32x_poll_detect(&sh2_poll[id], a, ash2_cycles_done(), 1))
1002 if (id == 0 && a < sizeof(Pico32xMem->sh2_rom_m))
1003 return *(u16 *)(Pico32xMem->sh2_rom_m + a);
1004 if (id == 1 && a < sizeof(Pico32xMem->sh2_rom_s))
1005 return *(u16 *)(Pico32xMem->sh2_rom_s + a);
1007 if ((a & 0x3ff00) == 0x4200) {
1008 d = Pico32xMem->pal[(a & 0x1ff) / 2];
1012 return sh2_read16_unmapped(a, id);
1015 elprintf(EL_32X, "%csh2 r16 [%08x] %04x @%06x",
1016 id ? 's' : 'm', a, d, sh2_pc(id));
1020 static u32 sh2_read16_da(u32 a, int id)
1022 return ((u16 *)Pico32xMem->data_array[id])[(a & 0xfff) / 2];
1025 static int REGPARM(3) sh2_write_ignore(u32 a, u32 d, int id)
1031 static int REGPARM(3) sh2_write8_unmapped(u32 a, u32 d, int id)
1033 elprintf(EL_UIO, "%csh2 unmapped w8 [%08x] %02x @%06x",
1034 id ? 's' : 'm', a, d & 0xff, sh2_pc(id));
1038 static int REGPARM(3) sh2_write8_cs0(u32 a, u32 d, int id)
1040 elprintf(EL_32X, "%csh2 w8 [%08x] %02x @%06x",
1041 id ? 's' : 'm', a, d & 0xff, sh2_pc(id));
1043 if ((a & 0x3ff00) == 0x4100) {
1044 p32x_vdp_write8(a, d);
1048 if ((a & 0x3ff00) == 0x4000) {
1049 p32x_sh2reg_write8(a, d, id);
1053 return sh2_write8_unmapped(a, d, id);
1056 /* quirk: in both normal and overwrite areas only nonzero values go through */
1057 #define sh2_write8_dramN(n) \
1058 if ((d & 0xff) != 0) { \
1059 u8 *dram = (u8 *)Pico32xMem->dram[n]; \
1060 dram[(a & 0x1ffff) ^ 1] = d; \
1064 static int REGPARM(3) sh2_write8_dram0(u32 a, u32 d, int id)
1066 sh2_write8_dramN(0);
1069 static int REGPARM(3) sh2_write8_dram1(u32 a, u32 d, int id)
1071 sh2_write8_dramN(1);
1074 static int REGPARM(3) sh2_write8_sdram(u32 a, u32 d, int id)
1076 u32 a1 = a & 0x3ffff;
1078 int t = Pico32xMem->drcblk_ram[a1 >> SH2_DRCBLK_RAM_SHIFT];
1080 sh2_drc_wcheck_ram(a, t, id);
1082 Pico32xMem->sdram[a1 ^ 1] = d;
1086 static int REGPARM(3) sh2_write8_da(u32 a, u32 d, int id)
1090 int t = Pico32xMem->drcblk_da[id][a1 >> SH2_DRCBLK_DA_SHIFT];
1092 sh2_drc_wcheck_da(a, t, id);
1094 Pico32xMem->data_array[id][a1 ^ 1] = d;
1099 static int REGPARM(3) sh2_write16_unmapped(u32 a, u32 d, int id)
1101 elprintf(EL_UIO, "%csh2 unmapped w16 [%08x] %04x @%06x",
1102 id ? 's' : 'm', a, d & 0xffff, sh2_pc(id));
1106 static int REGPARM(3) sh2_write16_cs0(u32 a, u32 d, int id)
1108 if (((EL_LOGMASK & EL_PWM) || (a & 0x30) != 0x30)) // hide PWM
1109 elprintf(EL_32X, "%csh2 w16 [%08x] %04x @%06x",
1110 id ? 's' : 'm', a, d & 0xffff, sh2_pc(id));
1112 if ((a & 0x3ff00) == 0x4100) {
1113 sh2_poll[id].cnt = 0; // for poll before VDP accesses
1114 p32x_vdp_write16(a, d);
1118 if ((a & 0x3fe00) == 0x4200) {
1119 Pico32xMem->pal[(a & 0x1ff) / 2] = d;
1120 Pico32x.dirty_pal = 1;
1124 if ((a & 0x3ff00) == 0x4000) {
1125 p32x_sh2reg_write16(a, d, id);
1129 return sh2_write16_unmapped(a, d, id);
1132 #define sh2_write16_dramN(n) \
1133 u16 *pd = &Pico32xMem->dram[n][(a & 0x1ffff) / 2]; \
1134 if (!(a & 0x20000)) { \
1139 if (!(d & 0xff00)) d |= *pd & 0xff00; \
1140 if (!(d & 0x00ff)) d |= *pd & 0x00ff; \
1144 static int REGPARM(3) sh2_write16_dram0(u32 a, u32 d, int id)
1146 sh2_write16_dramN(0);
1149 static int REGPARM(3) sh2_write16_dram1(u32 a, u32 d, int id)
1151 sh2_write16_dramN(1);
1154 static int REGPARM(3) sh2_write16_sdram(u32 a, u32 d, int id)
1156 u32 a1 = a & 0x3ffff;
1158 int t = Pico32xMem->drcblk_ram[a1 >> SH2_DRCBLK_RAM_SHIFT];
1160 sh2_drc_wcheck_ram(a, t, id);
1162 ((u16 *)Pico32xMem->sdram)[a1 / 2] = d;
1166 static int REGPARM(3) sh2_write16_da(u32 a, u32 d, int id)
1170 int t = Pico32xMem->drcblk_da[id][a1 >> SH2_DRCBLK_DA_SHIFT];
1172 sh2_drc_wcheck_da(a, t, id);
1174 ((u16 *)Pico32xMem->data_array[id])[a1 / 2] = d;
1180 uptr addr; // stores (membase >> 1) or ((handler >> 1) | (1<<31))
1184 typedef u32 (sh2_read_handler)(u32 a, int id);
1185 typedef int REGPARM(3) (sh2_write_handler)(u32 a, u32 d, int id);
1187 #define SH2MAP_ADDR2OFFS_R(a) \
1188 ((((a) >> 25) & 3) | (((a) >> 27) & 0x1c))
1190 #define SH2MAP_ADDR2OFFS_W(a) \
1191 ((u32)(a) >> SH2_WRITE_SHIFT)
1193 u32 REGPARM(2) p32x_sh2_read8(u32 a, SH2 *sh2)
1195 const sh2_memmap *sh2_map = sh2->read8_map;
1198 sh2_map += SH2MAP_ADDR2OFFS_R(a);
1200 if (map_flag_set(p))
1201 return ((sh2_read_handler *)(p << 1))(a, sh2->is_slave);
1203 return *(u8 *)((p << 1) + ((a & sh2_map->mask) ^ 1));
1206 u32 REGPARM(2) p32x_sh2_read16(u32 a, SH2 *sh2)
1208 const sh2_memmap *sh2_map = sh2->read16_map;
1211 sh2_map += SH2MAP_ADDR2OFFS_R(a);
1213 if (map_flag_set(p))
1214 return ((sh2_read_handler *)(p << 1))(a, sh2->is_slave);
1216 return *(u16 *)((p << 1) + ((a & sh2_map->mask) & ~1));
1219 u32 REGPARM(2) p32x_sh2_read32(u32 a, SH2 *sh2)
1221 const sh2_memmap *sh2_map = sh2->read16_map;
1222 sh2_read_handler *handler;
1226 offs = SH2MAP_ADDR2OFFS_R(a);
1229 if (!map_flag_set(p)) {
1230 // XXX: maybe 32bit access instead with ror?
1231 u16 *pd = (u16 *)((p << 1) + ((a & sh2_map->mask) & ~1));
1232 return (pd[0] << 16) | pd[1];
1236 return sh2_peripheral_read32(a, sh2->is_slave);
1238 handler = (sh2_read_handler *)(p << 1);
1239 return (handler(a, sh2->is_slave) << 16) | handler(a + 2, sh2->is_slave);
1242 // return nonzero if write potentially causes an interrupt (used by drc)
1243 int REGPARM(3) p32x_sh2_write8(u32 a, u32 d, SH2 *sh2)
1245 const void **sh2_wmap = sh2->write8_tab;
1246 sh2_write_handler *wh;
1248 wh = sh2_wmap[SH2MAP_ADDR2OFFS_W(a)];
1249 return wh(a, d, sh2->is_slave);
1252 int REGPARM(3) p32x_sh2_write16(u32 a, u32 d, SH2 *sh2)
1254 const void **sh2_wmap = sh2->write16_tab;
1255 sh2_write_handler *wh;
1257 wh = sh2_wmap[SH2MAP_ADDR2OFFS_W(a)];
1258 return wh(a, d, sh2->is_slave);
1261 int REGPARM(3) p32x_sh2_write32(u32 a, u32 d, SH2 *sh2)
1263 const void **sh2_wmap = sh2->write16_tab;
1264 sh2_write_handler *handler;
1267 offs = SH2MAP_ADDR2OFFS_W(a);
1269 if (offs == SH2MAP_ADDR2OFFS_W(0xffffc000)) {
1270 sh2_peripheral_write32(a, d, sh2->is_slave);
1274 handler = sh2_wmap[offs];
1275 handler(a, d >> 16, sh2->is_slave);
1276 handler(a + 2, d, sh2->is_slave);
1280 // -----------------------------------------------------------------
1282 static const u16 msh2_code[] = {
1283 // trap instructions
1284 0xaffe, // bra <self>
1286 // have to wait a bit until m68k initial program finishes clearing stuff
1287 // to avoid races with game SH2 code, like in Tempo
1288 0xd004, // mov.l @(_m_ok,pc), r0
1289 0xd105, // mov.l @(_cnt,pc), r1
1290 0xd205, // mov.l @(_start,pc), r2
1291 0x71ff, // add #-1, r1
1292 0x4115, // cmp/pl r1
1294 0xc208, // mov.l r0, @(h'20,gbr)
1295 0x6822, // mov.l @r2, r8
1298 ('M'<<8)|'_', ('O'<<8)|'K',
1300 0x2200, 0x03e0 // master start pointer in ROM
1303 static const u16 ssh2_code[] = {
1304 0xaffe, // bra <self>
1306 // code to wait for master, in case authentic master BIOS is used
1307 0xd104, // mov.l @(_m_ok,pc), r1
1308 0xd206, // mov.l @(_start,pc), r2
1309 0xc608, // mov.l @(h'20,gbr), r0
1310 0x3100, // cmp/eq r0, r1
1312 0xd003, // mov.l @(_s_ok,pc), r0
1313 0xc209, // mov.l r0, @(h'24,gbr)
1314 0x6822, // mov.l @r2, r8
1317 ('M'<<8)|'_', ('O'<<8)|'K',
1318 ('S'<<8)|'_', ('O'<<8)|'K',
1319 0x2200, 0x03e4 // slave start pointer in ROM
1322 #define HWSWAP(x) (((x) << 16) | ((x) >> 16))
1323 static void get_bios(void)
1330 if (p32x_bios_g != NULL) {
1331 elprintf(EL_STATUS|EL_32X, "32x: using supplied 68k BIOS");
1332 Byteswap(Pico32xMem->m68k_rom, p32x_bios_g, 0x100);
1336 ps = (u16 *)Pico32xMem->m68k_rom;
1338 for (i = 1; i < 0xc0/4; i++)
1339 pl[i] = HWSWAP(0x880200 + (i - 1) * 6);
1342 for (i = 0xc0/2; i < 0x100/2; i++)
1346 ps[0xc0/2] = 0x46fc;
1347 ps[0xc2/2] = 0x2700; // move #0x2700,sr
1348 ps[0xfe/2] = 0x60fe; // jump to self
1350 ps[0xfe/2] = 0x4e75; // rts
1353 // fill remaining m68k_rom page with game ROM
1354 memcpy(Pico32xMem->m68k_rom + 0x100, Pico.rom + 0x100, sizeof(Pico32xMem->m68k_rom) - 0x100);
1357 if (p32x_bios_m != NULL) {
1358 elprintf(EL_STATUS|EL_32X, "32x: using supplied master SH2 BIOS");
1359 Byteswap(Pico32xMem->sh2_rom_m, p32x_bios_m, sizeof(Pico32xMem->sh2_rom_m));
1362 pl = (u32 *)Pico32xMem->sh2_rom_m;
1364 // fill exception vector table to our trap address
1365 for (i = 0; i < 128; i++)
1366 pl[i] = HWSWAP(0x200);
1369 memcpy(Pico32xMem->sh2_rom_m + 0x200, msh2_code, sizeof(msh2_code));
1372 pl[1] = pl[3] = HWSWAP(0x6040000);
1374 pl[0] = pl[2] = HWSWAP(0x204);
1378 if (p32x_bios_s != NULL) {
1379 elprintf(EL_STATUS|EL_32X, "32x: using supplied slave SH2 BIOS");
1380 Byteswap(Pico32xMem->sh2_rom_s, p32x_bios_s, sizeof(Pico32xMem->sh2_rom_s));
1383 pl = (u32 *)Pico32xMem->sh2_rom_s;
1385 // fill exception vector table to our trap address
1386 for (i = 0; i < 128; i++)
1387 pl[i] = HWSWAP(0x200);
1390 memcpy(Pico32xMem->sh2_rom_s + 0x200, ssh2_code, sizeof(ssh2_code));
1393 pl[1] = pl[3] = HWSWAP(0x603f800);
1395 pl[0] = pl[2] = HWSWAP(0x204);
1399 #define MAP_MEMORY(m) ((uptr)(m) >> 1)
1400 #define MAP_HANDLER(h) ( ((uptr)(h) >> 1) | ((uptr)1 << (sizeof(uptr) * 8 - 1)) )
1402 static sh2_memmap sh2_read8_map[0x20], sh2_read16_map[0x20];
1403 // for writes we are using handlers only
1404 static sh2_write_handler *sh2_write8_map[0x80], *sh2_write16_map[0x80];
1406 void Pico32xSwapDRAM(int b)
1408 cpu68k_map_set(m68k_read8_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
1409 cpu68k_map_set(m68k_read16_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
1410 cpu68k_map_set(m68k_write8_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
1411 cpu68k_map_set(m68k_write16_map, 0x840000, 0x85ffff, Pico32xMem->dram[b], 0);
1414 sh2_read8_map[2].addr = sh2_read8_map[6].addr =
1415 sh2_read16_map[2].addr = sh2_read16_map[6].addr = MAP_MEMORY(Pico32xMem->dram[b]);
1417 sh2_write8_map[0x04/2] = sh2_write8_map[0x24/2] = b ? sh2_write8_dram1 : sh2_write8_dram0;
1418 sh2_write16_map[0x04/2] = sh2_write16_map[0x24/2] = b ? sh2_write16_dram1 : sh2_write16_dram0;
1421 void PicoMemSetup32x(void)
1426 Pico32xMem = plat_mmap(0x06000000, sizeof(*Pico32xMem));
1427 if (Pico32xMem == NULL) {
1428 elprintf(EL_STATUS, "OOM");
1432 dmac0 = (void *)&Pico32xMem->sh2_peri_regs[0][0x180 / 4];
1436 // cartridge area becomes unmapped
1437 // XXX: we take the easy way and don't unmap ROM,
1438 // so that we can avoid handling the RV bit.
1439 // m68k_map_unmap(0x000000, 0x3fffff);
1442 rs = sizeof(Pico32xMem->m68k_rom);
1443 cpu68k_map_set(m68k_read8_map, 0x000000, rs - 1, Pico32xMem->m68k_rom, 0);
1444 cpu68k_map_set(m68k_read16_map, 0x000000, rs - 1, Pico32xMem->m68k_rom, 0);
1445 cpu68k_map_set(m68k_write8_map, 0x000000, rs - 1, PicoWrite8_hint, 1); // TODO verify
1446 cpu68k_map_set(m68k_write16_map, 0x000000, rs - 1, PicoWrite16_hint, 1);
1448 // 32X ROM (unbanked, XXX: consider mirroring?)
1449 rs = (Pico.romsize + M68K_BANK_MASK) & ~M68K_BANK_MASK;
1452 cpu68k_map_set(m68k_read8_map, 0x880000, 0x880000 + rs - 1, Pico.rom, 0);
1453 cpu68k_map_set(m68k_read16_map, 0x880000, 0x880000 + rs - 1, Pico.rom, 0);
1455 // setup FAME fetchmap
1456 PicoCpuFM68k.Fetch[0] = (u32)Pico32xMem->m68k_rom;
1457 for (rs = 0x88; rs < 0x90; rs++)
1458 PicoCpuFM68k.Fetch[rs] = (u32)Pico.rom - 0x880000;
1465 cpu68k_map_set(m68k_read8_map, 0xa10000, 0xa1ffff, PicoRead8_32x_on, 1);
1466 cpu68k_map_set(m68k_read16_map, 0xa10000, 0xa1ffff, PicoRead16_32x_on, 1);
1467 cpu68k_map_set(m68k_write8_map, 0xa10000, 0xa1ffff, PicoWrite8_32x_on, 1);
1468 cpu68k_map_set(m68k_write16_map, 0xa10000, 0xa1ffff, PicoWrite16_32x_on, 1);
1470 // SH2 maps: A31,A30,A29,CS1,CS0
1471 // all unmapped by default
1472 for (i = 0; i < ARRAY_SIZE(sh2_read8_map); i++) {
1473 sh2_read8_map[i].addr = MAP_HANDLER(sh2_read8_unmapped);
1474 sh2_read16_map[i].addr = MAP_HANDLER(sh2_read16_unmapped);
1477 for (i = 0; i < ARRAY_SIZE(sh2_write8_map); i++) {
1478 sh2_write8_map[i] = sh2_write8_unmapped;
1479 sh2_write16_map[i] = sh2_write16_unmapped;
1483 for (i = 0x40; i <= 0x5f; i++) {
1484 sh2_write8_map[i >> 1] =
1485 sh2_write16_map[i >> 1] = sh2_write_ignore;
1489 sh2_read8_map[0].addr = sh2_read8_map[4].addr = MAP_HANDLER(sh2_read8_cs0);
1490 sh2_read16_map[0].addr = sh2_read16_map[4].addr = MAP_HANDLER(sh2_read16_cs0);
1491 sh2_write8_map[0x00/2] = sh2_write8_map[0x20/2] = sh2_write8_cs0;
1492 sh2_write16_map[0x00/2] = sh2_write16_map[0x20/2] = sh2_write16_cs0;
1494 sh2_read8_map[1].addr = sh2_read8_map[5].addr =
1495 sh2_read16_map[1].addr = sh2_read16_map[5].addr = MAP_MEMORY(Pico.rom);
1496 sh2_read8_map[1].mask = sh2_read8_map[5].mask =
1497 sh2_read16_map[1].mask = sh2_read16_map[5].mask = 0x3fffff; // FIXME
1498 // CS2 - DRAM - done by Pico32xSwapDRAM()
1499 sh2_read8_map[2].mask = sh2_read8_map[6].mask =
1500 sh2_read16_map[2].mask = sh2_read16_map[6].mask = 0x01ffff;
1502 sh2_read8_map[3].addr = sh2_read8_map[7].addr =
1503 sh2_read16_map[3].addr = sh2_read16_map[7].addr = MAP_MEMORY(Pico32xMem->sdram);
1504 sh2_write8_map[0x06/2] = sh2_write8_map[0x26/2] = sh2_write8_sdram;
1505 sh2_write16_map[0x06/2] = sh2_write16_map[0x26/2] = sh2_write16_sdram;
1506 sh2_read8_map[3].mask = sh2_read8_map[7].mask =
1507 sh2_read16_map[3].mask = sh2_read16_map[7].mask = 0x03ffff;
1509 sh2_read8_map[0x18].addr = MAP_HANDLER(sh2_read8_da);
1510 sh2_read16_map[0x18].addr = MAP_HANDLER(sh2_read16_da);
1511 sh2_write8_map[0xc0/2] = sh2_write8_da;
1512 sh2_write16_map[0xc0/2] = sh2_write16_da;
1514 sh2_read8_map[0x1f].addr = MAP_HANDLER(sh2_peripheral_read8);
1515 sh2_read16_map[0x1f].addr = MAP_HANDLER(sh2_peripheral_read16);
1516 sh2_write8_map[0xff/2] = sh2_peripheral_write8;
1517 sh2_write16_map[0xff/2] = sh2_peripheral_write16;
1519 // map DRAM area, both 68k and SH2
1522 msh2.read8_map = ssh2.read8_map = sh2_read8_map;
1523 msh2.read16_map = ssh2.read16_map = sh2_read16_map;
1524 msh2.write8_tab = ssh2.write8_tab = (const void **)sh2_write8_map;
1525 msh2.write16_tab = ssh2.write16_tab = (const void **)sh2_write16_map;
1527 // setup poll detector
1528 m68k_poll.flag = P32XF_68KPOLL;
1529 m68k_poll.cyc_max = 64;
1530 sh2_poll[0].flag = P32XF_MSH2POLL;
1531 sh2_poll[0].cyc_max = 21;
1532 sh2_poll[1].flag = P32XF_SSH2POLL;
1533 sh2_poll[1].cyc_max = 16;
1536 // vim:shiftwidth=2:expandtab