summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/sg1000_exp/sg1000exp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/sg1000_exp/sg1000exp.cpp')
-rw-r--r--src/devices/bus/sg1000_exp/sg1000exp.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/bus/sg1000_exp/sg1000exp.cpp b/src/devices/bus/sg1000_exp/sg1000exp.cpp
index 8c8bc53f6a4..09e6e826515 100644
--- a/src/devices/bus/sg1000_exp/sg1000exp.cpp
+++ b/src/devices/bus/sg1000_exp/sg1000exp.cpp
@@ -121,7 +121,8 @@ bool sg1000_expansion_slot_device::is_writeable(uint8_t offset)
// SLOT_INTERFACE( sg1000_expansion_devices )
//-------------------------------------------------
-SLOT_INTERFACE_START( sg1000_expansion_devices )
- SLOT_INTERFACE("sk1100", SEGA_SK1100)
- SLOT_INTERFACE("fm", SEGA_FM_UNIT)
-SLOT_INTERFACE_END
+void sg1000_expansion_devices(device_slot_interface &device)
+{
+ device.option_add("sk1100", SEGA_SK1100);
+ device.option_add("fm", SEGA_FM_UNIT);
+}