summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/psx/parallel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/psx/parallel.cpp')
-rw-r--r--src/devices/bus/psx/parallel.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/psx/parallel.cpp b/src/devices/bus/psx/parallel.cpp
index 4fa5b29da66..b7947e11921 100644
--- a/src/devices/bus/psx/parallel.cpp
+++ b/src/devices/bus/psx/parallel.cpp
@@ -108,7 +108,8 @@ WRITE16_MEMBER(psx_parallel_slot_device::exp_w)
// slot devices
#include "gamebooster.h"
-SLOT_INTERFACE_START( psx_parallel_devices )
- SLOT_INTERFACE("gamebooster", PSX_GAMEBOOSTER)
-SLOT_INTERFACE_END
+void psx_parallel_devices(device_slot_interface &device)
+{
+ device.option_add("gamebooster", PSX_GAMEBOOSTER);
+}