Previous 199869 Revisions Next

r40668 Thursday 10th September, 2015 at 18:24:58 UTC by Osso
segaxbd.c: fixed rascot regression (nw)
Haze, hope I didn't step on your toes. Revert if so.
[src/mame/drivers]segaxbd.c

trunk/src/mame/drivers/segaxbd.c
r249179r249180
39393939
39403940DRIVER_INIT_MEMBER(segaxbd_new_state,rascot)
39413941{
3942#if 0
39433942   // patch out bootup link test
39443943   UINT16 *rom = reinterpret_cast<UINT16 *>(memregion("mainpcb:subcpu")->base());
39453944   rom[0xb78/2] = 0x601e; // subrom checksum test
r249179r249180
39483947   rom[0x606/2] = 0x4e71;
39493948
39503949   // map /EXCS space
3951   m_mainpcb->m_maincpu->space(AS_PROGRAM).install_readwrite_handler(0x0f0000, 0x0f3fff, read16_delegate(FUNC(segaxbd_state::rascot_excs_r), this), write16_delegate(FUNC(segaxbd_state::rascot_excs_w), this));
3952#endif
3950   m_mainpcb->m_maincpu->space(AS_PROGRAM).install_readwrite_handler(0x0f0000, 0x0f3fff, read16_delegate(FUNC(segaxbd_state::rascot_excs_r), (segaxbd_state*)m_mainpcb), write16_delegate(FUNC(segaxbd_state::rascot_excs_w), (segaxbd_state*)m_mainpcb));
39533951}
39543952
39553953void segaxbd_state::install_gprider(void)


Previous 199869 Revisions Next


© 1997-2024 The MAME Team