summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/c64/bn1541.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/c64/bn1541.cpp')
-rw-r--r--src/devices/bus/c64/bn1541.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/bus/c64/bn1541.cpp b/src/devices/bus/c64/bn1541.cpp
index dbb5fc4bb1a..ec89d07edb4 100644
--- a/src/devices/bus/c64/bn1541.cpp
+++ b/src/devices/bus/c64/bn1541.cpp
@@ -75,9 +75,9 @@ c64_bn1541_device::c64_bn1541_device(const machine_config &mconfig, const char *
void c64_bn1541_device::device_start()
{
- for (device_t &device : device_iterator(machine().root_device()))
+ for (device_t &device : device_enumerator(machine().root_device()))
{
- for (device_t &subdevice : device_iterator(device))
+ for (device_t &subdevice : device_enumerator(device))
{
if (subdevice.interface(m_other) && &subdevice != this)
{
@@ -140,7 +140,7 @@ void c64_bn1541_device::update_output()
// input_8 - CIA2 PC write
//-------------------------------------------------
-WRITE_LINE_MEMBER(c64_bn1541_device::input_8)
+void c64_bn1541_device::input_8(int state)
{
if (LOG) logerror("C64 parallel strobe %u\n", state);