summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/apc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/apc.cpp')
-rw-r--r--src/mame/drivers/apc.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mame/drivers/apc.cpp b/src/mame/drivers/apc.cpp
index 0d982b2a1ac..95213e51826 100644
--- a/src/mame/drivers/apc.cpp
+++ b/src/mame/drivers/apc.cpp
@@ -916,9 +916,10 @@ static const floppy_format_type apc_floppy_formats[] = {
nullptr
};
-static SLOT_INTERFACE_START( apc_floppies )
- SLOT_INTERFACE( "8", FLOPPY_8_DSDD )
-SLOT_INTERFACE_END
+static void apc_floppies(device_slot_interface &device)
+{
+ device.option_add("8", FLOPPY_8_DSDD);
+}
MACHINE_CONFIG_START(apc_state::apc)