summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/intellec4/intellec4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/intellec4/intellec4.cpp')
-rw-r--r--src/devices/bus/intellec4/intellec4.cpp11
1 files changed, 6 insertions, 5 deletions
diff --git a/src/devices/bus/intellec4/intellec4.cpp b/src/devices/bus/intellec4/intellec4.cpp
index 17b2df413e0..b74256d795f 100644
--- a/src/devices/bus/intellec4/intellec4.cpp
+++ b/src/devices/bus/intellec4/intellec4.cpp
@@ -290,8 +290,9 @@ void device_univ_card_interface::set_bus(univ_bus_device &bus)
#include "prommemory.h"
#include "tapereader.h"
-SLOT_INTERFACE_START(intellec4_univ_cards)
- SLOT_INTERFACE("imm4_22", INTELLEC4_INST_DATA_STORAGE)
- SLOT_INTERFACE("imm6_26", INTELLEC4_PROM_MEMORY)
- SLOT_INTERFACE("imm4_90", INTELLEC4_TAPE_READER)
-SLOT_INTERFACE_END
+void intellec4_univ_cards(device_slot_interface &device)
+{
+ device.option_add("imm4_22", INTELLEC4_INST_DATA_STORAGE);
+ device.option_add("imm6_26", INTELLEC4_PROM_MEMORY);
+ device.option_add("imm4_90", INTELLEC4_TAPE_READER);
+}