summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/taitogn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/taitogn.cpp')
-rw-r--r--src/mame/drivers/taitogn.cpp13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mame/drivers/taitogn.cpp b/src/mame/drivers/taitogn.cpp
index 77e352d421b..92a3d1c70c1 100644
--- a/src/mame/drivers/taitogn.cpp
+++ b/src/mame/drivers/taitogn.cpp
@@ -686,12 +686,13 @@ void taitogn_state::taitogn_mp_map(address_map &map)
map(0x1fa10100, 0x1fa10100).r(this, FUNC(taitogn_state::gnet_mahjong_panel_r));
}
-SLOT_INTERFACE_START(slot_ataflash)
- SLOT_INTERFACE("taitopccard1", TAITO_PCCARD1)
- SLOT_INTERFACE("taitopccard2", TAITO_PCCARD2)
- SLOT_INTERFACE("taitocf", TAITO_COMPACT_FLASH)
- SLOT_INTERFACE("ataflash", ATA_FLASH_PCCARD)
-SLOT_INTERFACE_END
+void slot_ataflash(device_slot_interface &device)
+{
+ device.option_add("taitopccard1", TAITO_PCCARD1);
+ device.option_add("taitopccard2", TAITO_PCCARD2);
+ device.option_add("taitocf", TAITO_COMPACT_FLASH);
+ device.option_add("ataflash", ATA_FLASH_PCCARD);
+}
MACHINE_CONFIG_START(taitogn_state::coh3002t)