summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author arbee <rb6502@users.noreply.github.com>2021-02-21 19:51:36 -0500
committer arbee <rb6502@users.noreply.github.com>2021-02-21 19:51:36 -0500
commit2878aeb47bb89f0ae7e15ed8072e0c349f5c3a23 (patch)
treecfce528e47082c2dad3f66eae962f20f68df516c
parent7024ab3d2bbe82445bba96b011b5528f9de63354 (diff)
iwm: compile fix [R. Belmont]
-rw-r--r--src/devices/machine/iwm.cpp2
-rw-r--r--src/devices/machine/iwm.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/iwm.cpp b/src/devices/machine/iwm.cpp
index 9d9d6cbaa75..88aed1cda7a 100644
--- a/src/devices/machine/iwm.cpp
+++ b/src/devices/machine/iwm.cpp
@@ -131,7 +131,7 @@ void iwm_device::write(offs_t offset, u8 data)
control(offset, data);
}
-void iwm_device::flush_write()
+void iwm_device::flush_write(u64 when)
{
if(!m_flux_write_start)
return;
diff --git a/src/devices/machine/iwm.h b/src/devices/machine/iwm.h
index e8cb2189fa7..9f77b1c53fc 100644
--- a/src/devices/machine/iwm.h
+++ b/src/devices/machine/iwm.h
@@ -83,7 +83,7 @@ private:
u64 read_register_update_delay() const;
u64 write_sync_half_window_size() const;
inline bool is_sync() const;
- void flush_write();
+ void flush_write(u64 when = 0);
};
DECLARE_DEVICE_TYPE(IWM, iwm_device)