summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/hp9845_io/hp9845_io.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/hp9845_io/hp9845_io.cpp')
-rw-r--r--src/devices/bus/hp9845_io/hp9845_io.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/devices/bus/hp9845_io/hp9845_io.cpp b/src/devices/bus/hp9845_io/hp9845_io.cpp
index d270ac89e4b..61e4a90d721 100644
--- a/src/devices/bus/hp9845_io/hp9845_io.cpp
+++ b/src/devices/bus/hp9845_io/hp9845_io.cpp
@@ -126,7 +126,8 @@ void hp9845_io_card_device::flg_w(int state)
#include "98035.h"
#include "98034.h"
-SLOT_INTERFACE_START(hp9845_io_slot_devices)
-SLOT_INTERFACE("98034_hpib" , HP98034_IO_CARD)
-SLOT_INTERFACE("98035_rtc" , HP98035_IO_CARD)
-SLOT_INTERFACE_END
+void hp9845_io_slot_devices(device_slot_interface &device)
+{
+ device.option_add("98034_hpib" , HP98034_IO_CARD);
+ device.option_add("98035_rtc" , HP98035_IO_CARD);
+}