summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/ieee488/remote488.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/ieee488/remote488.cpp')
-rw-r--r--src/devices/bus/ieee488/remote488.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/devices/bus/ieee488/remote488.cpp b/src/devices/bus/ieee488/remote488.cpp
index a9baafc9320..b5eb0041632 100644
--- a/src/devices/bus/ieee488/remote488.cpp
+++ b/src/devices/bus/ieee488/remote488.cpp
@@ -249,9 +249,10 @@ remote488_device::remote488_device(const machine_config &mconfig, const char *ta
{
}
-MACHINE_CONFIG_START(remote488_device::device_add_mconfig)
- MCFG_DEVICE_ADD("stream", BITBANGER, 0)
-MACHINE_CONFIG_END
+void remote488_device::device_add_mconfig(machine_config &config)
+{
+ BITBANGER(config, m_stream, 0);
+}
void remote488_device::ieee488_eoi(int state)
{