summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author hap <happppp@users.noreply.github.com>2015-01-30 11:11:22 +0100
committer hap <happppp@users.noreply.github.com>2015-01-30 11:11:22 +0100
commitf111864a90fa13c84f21bcee91be90022788b67d (patch)
treec6f838a9aeae8af494b9b0047a3670635c335324 /src
parent07e89e1e6f6514cf257e315d799ce3d102a74e0a (diff)
uploaded the romset
Diffstat (limited to 'src')
-rw-r--r--src/emu/cpu/amis2000/amis2000.c6
-rw-r--r--src/mess/drivers/wildfire.c2
2 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/cpu/amis2000/amis2000.c b/src/emu/cpu/amis2000/amis2000.c
index 41ad0b56f61..0e8dae3b8b9 100644
--- a/src/emu/cpu/amis2000/amis2000.c
+++ b/src/emu/cpu/amis2000/amis2000.c
@@ -23,12 +23,12 @@ const device_type AMI_S2150 = &device_creator<amis2150_device>;
// internal memory maps
static ADDRESS_MAP_START(program_1k, AS_PROGRAM, 8, amis2000_device)
- AM_RANGE(0x000, 0x3ff) AM_ROM
+ AM_RANGE(0x0000, 0x03ff) AM_ROM AM_MIRROR(0x1c00)
ADDRESS_MAP_END
static ADDRESS_MAP_START(program_1_5k, AS_PROGRAM, 8, amis2000_device)
- AM_RANGE(0x000, 0x3ff) AM_ROM
- AM_RANGE(0x400, 0x5ff) AM_ROM AM_MIRROR(0x200)
+ AM_RANGE(0x0000, 0x03ff) AM_ROM AM_MIRROR(0x1800)
+ AM_RANGE(0x0400, 0x05ff) AM_ROM AM_MIRROR(0x1a00)
ADDRESS_MAP_END
diff --git a/src/mess/drivers/wildfire.c b/src/mess/drivers/wildfire.c
index 7b6282b0df9..b846a89c039 100644
--- a/src/mess/drivers/wildfire.c
+++ b/src/mess/drivers/wildfire.c
@@ -91,7 +91,7 @@ MACHINE_CONFIG_END
ROM_START( wildfire )
ROM_REGION( 0x0600, "maincpu", 0 )
- ROM_LOAD( "us4341385", 0x0000, 0x0600, CRC(46877cef) SHA1(fc84c893cf0bdb12a5a002b921ce3120263e0081) ) // from patent US4334679, data should be correct (it included checksums)
+ ROM_LOAD( "us4341385", 0x0000, 0x0600, CRC(84ac0f1f) SHA1(1e00ddd402acfc2cc267c34eed4b89d863e2144f) ) // from patent US4334679, data should be correct (it included checksums)
ROM_END