summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hexbus/hexbus.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hexbus/hexbus.cpp')
-rw-r--r--src/devices/bus/hexbus/hexbus.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/hexbus/hexbus.cpp b/src/devices/bus/hexbus/hexbus.cpp
index 257a82b5054..4b1e390363a 100644
--- a/src/devices/bus/hexbus/hexbus.cpp
+++ b/src/devices/bus/hexbus/hexbus.cpp
@@ -342,7 +342,8 @@ uint8_t hexbus_chained_device::to_line_state(uint8_t data, bool bav, bool hsk)
} } // end namespace bus::hexbus
-SLOT_INTERFACE_START( hexbus_conn )
- SLOT_INTERFACE("hx5102", HX5102)
-SLOT_INTERFACE_END
+void hexbus_conn(device_slot_interface &device)
+{
+ device.option_add("hx5102", HX5102);
+}