From f604a2d9e9d8af0723abccdc7edfa85d7ed9b34a Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Thu, 8 Sep 2011 15:40:29 +0000 Subject: [PATCH] Removed ROM patch for iganinju, it works slightly better, still not yet working again :/ --- src/mame/drivers/megasys1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/mame/drivers/megasys1.c b/src/mame/drivers/megasys1.c index 6948cbdc3be..e509da9a856 100644 --- a/src/mame/drivers/megasys1.c +++ b/src/mame/drivers/megasys1.c @@ -3874,16 +3874,16 @@ static WRITE16_HANDLER( iganinju_mcu_hs_w ) static DRIVER_INIT( iganinju ) { - UINT16 *RAM; + //UINT16 *RAM; phantasm_rom_decode(machine, "maincpu"); - RAM = (UINT16 *) machine.region("maincpu")->base(); + //RAM = (UINT16 *) machine.region("maincpu")->base(); machine.device("maincpu")->memory().space(AS_PROGRAM)->install_legacy_read_handler(0x00000, 0x3ffff, FUNC(iganinju_mcu_hs_r)); machine.device("maincpu")->memory().space(AS_PROGRAM)->install_legacy_write_handler(0x2f000, 0x2f009, FUNC(iganinju_mcu_hs_w)); - RAM[0x00006e/2] = 0x0420; // the only game that does + //RAM[0x00006e/2] = 0x0420; // the only game that does // not like lev 3 interrupts }