mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Merge pull request #2820 from JoakimLarsson/epc_1
epc: fixed rom order for newer rom, now same error as old rom recentl…
This commit is contained in:
commit
a32abb37aa
@ -525,6 +525,8 @@ MACHINE_CONFIG_END
|
||||
|
||||
// Ericsson Information System
|
||||
static MACHINE_CONFIG_DERIVED( epc, pccga )
|
||||
MCFG_DEVICE_MODIFY("isa1")
|
||||
MCFG_SLOT_DEFAULT_OPTION("ega")
|
||||
MACHINE_CONFIG_END
|
||||
|
||||
static MACHINE_CONFIG_DERIVED( eppc, pccga )
|
||||
@ -823,12 +825,13 @@ ROM_END
|
||||
|
||||
ROM_START( epc )
|
||||
ROM_REGION(0x10000,"bios", 0)
|
||||
ROM_SYSTEM_BIOS(0, "p840705", "p840705")
|
||||
ROM_DEFAULT_BIOS("p860110")
|
||||
ROM_SYSTEM_BIOS(0, "p840705", "P840705")
|
||||
ROMX_LOAD("ericsson_8088.bin", 0xe000, 0x2000, CRC(3953c38d) SHA1(2bfc1f1d11d0da5664c3114994fc7aa3d6dd010d), ROM_BIOS(1))
|
||||
ROM_SYSTEM_BIOS(1, "p860110", "p860110")
|
||||
ROM_SYSTEM_BIOS(1, "p860110", "P860110")
|
||||
ROMX_LOAD( "epcbios1.bin", 0xe000, 0x02000, CRC(79a83706) SHA1(33528c46a24d7f65ef5a860fbed05afcf797fc55), ROM_BIOS(2))
|
||||
ROMX_LOAD( "epcbios2.bin", 0xc000, 0x02000, CRC(3ca764ca) SHA1(02232fedef22d31a641f4b65933b9e269afce19e), ROM_BIOS(2))
|
||||
ROMX_LOAD( "epcbios3.bin", 0xa000, 0x02000, CRC(70483280) SHA1(b44b09da94d77b0269fc48f07d130b2d74c4bb8f), ROM_BIOS(2))
|
||||
ROMX_LOAD( "epcbios2.bin", 0xa000, 0x02000, CRC(3ca764ca) SHA1(02232fedef22d31a641f4b65933b9e269afce19e), ROM_BIOS(2))
|
||||
ROMX_LOAD( "epcbios3.bin", 0xc000, 0x02000, CRC(70483280) SHA1(b44b09da94d77b0269fc48f07d130b2d74c4bb8f), ROM_BIOS(2))
|
||||
ROM_END
|
||||
|
||||
ROM_START( eppc )
|
||||
|
Loading…
Reference in New Issue
Block a user