summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-03-26 19:53:18 +1100
committer Vas Crabb <vas@vastheman.com>2018-03-26 19:53:18 +1100
commit503be5cbdb4e06f03f052342f4f40d4898e5938e (patch)
tree6032d1bd7383bb38013c24fa4e6ef9c76c1a1254 /src/mame
parent44a1d8ba1408dd93e0ddb933b9cc95e224e5d68b (diff)
Allow machine configuration to specify BIOS easily, move default BIOS selection into device configuration complete
Diffstat (limited to 'src/mame')
-rw-r--r--src/mame/drivers/model1.cpp6
-rw-r--r--src/mame/machine/m1comm.cpp6
2 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/drivers/model1.cpp b/src/mame/drivers/model1.cpp
index 9d095739047..e2a101227bf 100644
--- a/src/mame/drivers/model1.cpp
+++ b/src/mame/drivers/model1.cpp
@@ -1660,7 +1660,7 @@ MACHINE_CONFIG_START(model1_state::wingwar)
MCFG_CPU_PROGRAM_MAP(model1_comm_mem)
MCFG_M1COMM_ADD(M1COMM_TAG)
- // use EPR-15112
+ MCFG_DEVICE_BIOS("epr15112");
MACHINE_CONFIG_END
MACHINE_CONFIG_START(model1_state::swa)
@@ -1738,14 +1738,14 @@ MACHINE_CONFIG_START(model1_state::vr)
model1_vr(config);
MCFG_M1COMM_ADD(M1COMM_TAG)
- // use EPR-15112
+ MCFG_DEVICE_BIOS("epr15112");
MACHINE_CONFIG_END
MACHINE_CONFIG_START(model1_state::vformula)
model1_vr(config);
MCFG_M1COMM_ADD(M1COMM_TAG)
- // use EPR-15624
+ MCFG_DEVICE_BIOS("epr15624");
MACHINE_CONFIG_END
DRIVER_INIT_MEMBER(model1_state,wingwar360)
diff --git a/src/mame/machine/m1comm.cpp b/src/mame/machine/m1comm.cpp
index 943669406fa..57f6bb14a01 100644
--- a/src/mame/machine/m1comm.cpp
+++ b/src/mame/machine/m1comm.cpp
@@ -83,14 +83,14 @@ void m1comm_device::m1comm_io(address_map &map)
ROM_START( m1comm )
ROM_REGION( 0x20000, Z80_TAG, ROMREGION_ERASEFF )
- ROM_DEFAULT_BIOS("epr-15112")
+ ROM_DEFAULT_BIOS("epr15112")
// found on Virtua Racing and WingWar
- ROM_SYSTEM_BIOS( 0, "epr-15112", "EPR-15112" )
+ ROM_SYSTEM_BIOS( 0, "epr15112", "EPR-15112" )
ROMX_LOAD( "epr-15112.17", 0x0000, 0x20000, CRC(4950e771) SHA1(99014124e0324dd114cb22f55159d18b597a155a), ROM_BIOS(1) )
// found on Virtua Formula
- ROM_SYSTEM_BIOS( 1, "epr-15624", "EPR-15624" )
+ ROM_SYSTEM_BIOS( 1, "epr15624", "EPR-15624" )
ROMX_LOAD( "epr-15624.17", 0x0000, 0x20000, CRC(9b3ba315) SHA1(0cd0983cc8b2f2d6b41617d0d0a24cc6c188e62a), ROM_BIOS(2) )
ROM_END