summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ti8x/bitsocket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ti8x/bitsocket.cpp')
-rw-r--r--src/devices/bus/ti8x/bitsocket.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/ti8x/bitsocket.cpp b/src/devices/bus/ti8x/bitsocket.cpp
index e9394788d94..bfe7849aa40 100644
--- a/src/devices/bus/ti8x/bitsocket.cpp
+++ b/src/devices/bus/ti8x/bitsocket.cpp
@@ -25,9 +25,10 @@ bit_socket_device::bit_socket_device(
}
-MACHINE_CONFIG_START(bit_socket_device::device_add_mconfig)
- MCFG_DEVICE_ADD("stream", BITBANGER, 0)
-MACHINE_CONFIG_END
+void bit_socket_device::device_add_mconfig(machine_config &config)
+{
+ BITBANGER(config, m_stream, 0);
+}
void bit_socket_device::device_start()