summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2019-12-08 04:00:49 +1100
committer Vas Crabb <vas@vastheman.com>2019-12-08 04:00:49 +1100
commitd8ef34be9a20cd28a11aef627c533554f49346b8 (patch)
treea528ea40e19161c36875af7baef7090ca86eb5dd /src/devices/bus
parentd4b3128e0d410c02dd2f82b52b3d626e86ef816e (diff)
softlist_dev.cpp: get some stuff out of the global namespace (nw)
Diffstat (limited to 'src/devices/bus')
-rw-r--r--src/devices/bus/bbc/tube/tube_zep100.cpp2
-rw-r--r--src/devices/bus/econet/e01.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/bbc/tube/tube_zep100.cpp b/src/devices/bus/bbc/tube/tube_zep100.cpp
index f11f0af6415..87e6f2b2d88 100644
--- a/src/devices/bus/bbc/tube/tube_zep100.cpp
+++ b/src/devices/bus/bbc/tube/tube_zep100.cpp
@@ -86,7 +86,7 @@ void bbc_tube_zep100_device::device_add_mconfig(machine_config &config)
RAM(config, m_ram).set_default_size("64K").set_default_value(0x00);
/* software lists */
- SOFTWARE_LIST(config, "flop_ls_torch").set_type("bbc_flop_torch", SOFTWARE_LIST_ORIGINAL_SYSTEM).set_filter("Z80");
+ SOFTWARE_LIST(config, "flop_ls_torch").set_original("bbc_flop_torch").set_filter("Z80");
}
//-------------------------------------------------
diff --git a/src/devices/bus/econet/e01.cpp b/src/devices/bus/econet/e01.cpp
index 203090badc3..493791384f1 100644
--- a/src/devices/bus/econet/e01.cpp
+++ b/src/devices/bus/econet/e01.cpp
@@ -269,7 +269,7 @@ void econet_e01_device::device_add_mconfig(machine_config &config)
}
software_list_device &softlist(SOFTWARE_LIST(config, "flop_ls_e01"));
- softlist.set_type("e01_flop", SOFTWARE_LIST_ORIGINAL_SYSTEM);
+ softlist.set_original("e01_flop");
CENTRONICS(config, m_centronics, centronics_devices, "printer");
m_centronics->ack_handler().set(R6522_TAG, FUNC(via6522_device::write_ca1));