summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/pcxt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/pcxt.cpp')
-rw-r--r--src/mame/drivers/pcxt.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/drivers/pcxt.cpp b/src/mame/drivers/pcxt.cpp
index e0d5a6b6e47..9b814e5895c 100644
--- a/src/mame/drivers/pcxt.cpp
+++ b/src/mame/drivers/pcxt.cpp
@@ -486,10 +486,11 @@ void pcxt_state::machine_reset()
m_lastvalue = -1;
}
-static SLOT_INTERFACE_START( filetto_isa8_cards )
- SLOT_INTERFACE_INTERNAL("filetto", ISA8_CGA_FILETTO)
- SLOT_INTERFACE_INTERNAL("tetriskr", ISA8_CGA_TETRISKR)
-SLOT_INTERFACE_END
+static void filetto_isa8_cards(device_slot_interface &device)
+{
+ device.option_add_internal("filetto", ISA8_CGA_FILETTO);
+ device.option_add_internal("tetriskr", ISA8_CGA_TETRISKR);
+}
MACHINE_CONFIG_START(pcxt_state::filetto)