trunk/src/mame/drivers/segaxbd.c
| r249179 | r249180 | |
| 3939 | 3939 | |
| 3940 | 3940 | DRIVER_INIT_MEMBER(segaxbd_new_state,rascot) |
| 3941 | 3941 | { |
| 3942 | | #if 0 |
| 3943 | 3942 | // patch out bootup link test |
| 3944 | 3943 | UINT16 *rom = reinterpret_cast<UINT16 *>(memregion("mainpcb:subcpu")->base()); |
| 3945 | 3944 | rom[0xb78/2] = 0x601e; // subrom checksum test |
| r249179 | r249180 | |
| 3948 | 3947 | rom[0x606/2] = 0x4e71; |
| 3949 | 3948 | |
| 3950 | 3949 | // 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)); |
| 3953 | 3951 | } |
| 3954 | 3952 | |
| 3955 | 3953 | void segaxbd_state::install_gprider(void) |