summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/arcadia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/arcadia.cpp')
-rw-r--r--src/mame/drivers/arcadia.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/mame/drivers/arcadia.cpp b/src/mame/drivers/arcadia.cpp
index 2236e88c172..1a545ea4db6 100644
--- a/src/mame/drivers/arcadia.cpp
+++ b/src/mame/drivers/arcadia.cpp
@@ -464,10 +464,11 @@ void arcadia_state::machine_start()
}
}
-static SLOT_INTERFACE_START(arcadia_cart)
- SLOT_INTERFACE_INTERNAL("std", ARCADIA_ROM_STD)
- SLOT_INTERFACE_INTERNAL("golf", ARCADIA_ROM_GOLF)
-SLOT_INTERFACE_END
+static void arcadia_cart(device_slot_interface &device)
+{
+ device.option_add_internal("std", ARCADIA_ROM_STD);
+ device.option_add_internal("golf", ARCADIA_ROM_GOLF);
+}
MACHINE_CONFIG_START(arcadia_state::arcadia)