Previous 199869 Revisions Next

r34739 Friday 30th January, 2015 at 10:11:22 UTC by hap
uploaded the romset
[src/emu/cpu/amis2000]amis2000.c
[src/mess/drivers]wildfire.c

trunk/src/emu/cpu/amis2000/amis2000.c
r243250r243251
2323
2424// internal memory maps
2525static ADDRESS_MAP_START(program_1k, AS_PROGRAM, 8, amis2000_device)
26   AM_RANGE(0x000, 0x3ff) AM_ROM
26   AM_RANGE(0x0000, 0x03ff) AM_ROM AM_MIRROR(0x1c00)
2727ADDRESS_MAP_END
2828
2929static ADDRESS_MAP_START(program_1_5k, AS_PROGRAM, 8, amis2000_device)
30   AM_RANGE(0x000, 0x3ff) AM_ROM
31   AM_RANGE(0x400, 0x5ff) AM_ROM AM_MIRROR(0x200)
30   AM_RANGE(0x0000, 0x03ff) AM_ROM AM_MIRROR(0x1800)
31   AM_RANGE(0x0400, 0x05ff) AM_ROM AM_MIRROR(0x1a00)
3232ADDRESS_MAP_END
3333
3434
trunk/src/mess/drivers/wildfire.c
r243250r243251
9191
9292ROM_START( wildfire )
9393   ROM_REGION( 0x0600, "maincpu", 0 )
94   ROM_LOAD( "us4341385", 0x0000, 0x0600, CRC(46877cef) SHA1(fc84c893cf0bdb12a5a002b921ce3120263e0081) ) // from patent US4334679, data should be correct (it included checksums)
94   ROM_LOAD( "us4341385", 0x0000, 0x0600, CRC(84ac0f1f) SHA1(1e00ddd402acfc2cc267c34eed4b89d863e2144f) ) // from patent US4334679, data should be correct (it included checksums)
9595ROM_END
9696
9797


Previous 199869 Revisions Next


© 1997-2024 The MAME Team