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.cpp16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/devices/bus/ti8x/bitsocket.cpp b/src/devices/bus/ti8x/bitsocket.cpp
index 592743120db..982a3354580 100644
--- a/src/devices/bus/ti8x/bitsocket.cpp
+++ b/src/devices/bus/ti8x/bitsocket.cpp
@@ -10,15 +10,6 @@ DEFINE_DEVICE_TYPE_NS(TI8X_BIT_SOCKET, bus::ti8x, bit_socket_device, "ti8x_bitso
namespace bus { namespace ti8x {
-namespace {
-
-MACHINE_CONFIG_START(bit_socket)
- MCFG_DEVICE_ADD("stream", BITBANGER, 0)
-MACHINE_CONFIG_END
-
-} // anonymous namespace
-
-
bit_socket_device::bit_socket_device(
machine_config const &mconfig,
char const *tag,
@@ -34,10 +25,9 @@ bit_socket_device::bit_socket_device(
}
-machine_config_constructor bit_socket_device::device_mconfig_additions() const
-{
- return MACHINE_CONFIG_NAME(bit_socket);
-}
+MACHINE_CONFIG_MEMBER(bit_socket_device::device_add_mconfig)
+ MCFG_DEVICE_ADD("stream", BITBANGER, 0)
+MACHINE_CONFIG_END
void bit_socket_device::device_start()