summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers
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/drivers
parent44a1d8ba1408dd93e0ddb933b9cc95e224e5d68b (diff)
Allow machine configuration to specify BIOS easily, move default BIOS selection into device configuration complete
Diffstat (limited to 'src/mame/drivers')
-rw-r--r--src/mame/drivers/model1.cpp6
1 files changed, 3 insertions, 3 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)