diff options
author | 2020-04-16 00:23:23 +1000 | |
---|---|---|
committer | 2020-04-16 00:23:23 +1000 | |
commit | 3875349092fcb7378ca76e0b979b226e8ef5c307 (patch) | |
tree | 6f81d78140172511bbc40b542923e5b10b3b2b9e /src | |
parent | 8f393f526f725eca1ab20173fc899d5afbe6d2d6 (diff) |
lordgun: added a default eeprom
Diffstat (limited to 'src')
-rw-r--r-- | src/mame/drivers/lordgun.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/mame/drivers/lordgun.cpp b/src/mame/drivers/lordgun.cpp index 5e488dee5ac..d3ffedc9310 100644 --- a/src/mame/drivers/lordgun.cpp +++ b/src/mame/drivers/lordgun.cpp @@ -951,6 +951,9 @@ ROM_START( lordgun ) ROM_REGION( 0x080000, "oki", 0 ) // Samples ROM_LOAD( "lordgun.100", 0x00000, 0x80000, CRC(b4e0fa07) SHA1(f5f33fe3f3a124f4737751fda3ea409fceeec0be) ) + + ROM_REGION( 0x80, "eeprom", ROMREGION_LE|ROMREGION_16BIT ) // Default eeprom + ROM_LOAD( "eeprom", 0x00, 0x80, CRC(0dad0e43) SHA1(c216d1f19228e103b78e5acb30a66dab3804ac70) ) ROM_END |