From cf5d4579da0c99bf40274e600c3b968ccbf36395 Mon Sep 17 00:00:00 2001 From: braintro Date: Sat, 14 Apr 2018 13:31:48 -0500 Subject: gaelco2.cpp: Remove unneeded GFX2 ROM fill (nw) --- src/mame/drivers/gaelco2.cpp | 5 ++--- src/mame/machine/gaelco2.cpp | 1 - 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mame/drivers/gaelco2.cpp b/src/mame/drivers/gaelco2.cpp index 673af93cd60..379415b8456 100644 --- a/src/mame/drivers/gaelco2.cpp +++ b/src/mame/drivers/gaelco2.cpp @@ -1975,12 +1975,11 @@ ROM_START( wrally2 ) // REF: 950510-1 ROM_REGION( 0x0a00000, "gfx1", 0 ) /* GFX + Sound */ /* 0x0000000-0x0ffffff filled in in the DRIVER_INIT */ - ROM_LOAD( "wr2_ic68.ic68", 0x0800000, 0x0100000, CRC(4a75ffaa) SHA1(ffae561ad4fa100398ab6b94d8dcb13e9fae4272) ) /* GFX only - read as 27C080 */ + ROM_LOAD( "wr2_ic68.ic68", 0x0800000, 0x0100000, CRC(4a75ffaa) SHA1(ffae561ad4fa100398ab6b94d8dcb13e9fae4272) ) /* GFX only - read as 27C801 */ - ROM_REGION( 0x0800000, "gfx2", 0 ) /* Temporary storage */ + ROM_REGION( 0x0600000, "gfx2", 0 ) /* Temporary storage */ ROM_LOAD( "wr2_ic69.ic69", 0x0000000, 0x0400000, CRC(a174d196) SHA1(4a7da1cd288e73518143a027782f3140e6582cf4) ) /* GFX & Sound - read as 27C332 */ ROM_LOAD( "wr2_ic70.ic70", 0x0400000, 0x0200000, CRC(8d1e43ba) SHA1(79eed51788c6c55a4347be70a3be4eb14a0d1747) ) /* GFX only - read as 27C160 */ - ROM_FILL( 0x0600000, 0x0200000, 0x00 ) /* Empty */ ROM_END ROM_START( wrally2a ) // REF: 950510 diff --git a/src/mame/machine/gaelco2.cpp b/src/mame/machine/gaelco2.cpp index e19392a0062..e16efb5201f 100644 --- a/src/mame/machine/gaelco2.cpp +++ b/src/mame/machine/gaelco2.cpp @@ -142,7 +142,6 @@ DRIVER_INIT_MEMBER(gaelco2_state,wrally2) For "gfx2" we have this memory map: 0x0000000-0x03fffff ROM wr2_ic69.ic69 0x0400000-0x05fffff ROM wr2_ic70.ic70 - 0x0600000-0x07fffff ROM_FILL 00 and we are going to construct this one for "gfx1": 0x0000000-0x01fffff ROM wr2_ic69.ic69 even bytes -- cgit v1.2.3