summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2019-05-16 14:35:58 +1000
committer Robbbert <Robbbert@users.noreply.github.com>2019-05-16 14:35:58 +1000
commitd23ff415a945ef8c53a906a547d4d6d6efd1102a (patch)
tree6698b098fa9345cd26ab9595ea78bf82ab10d1d4
parentcf0ac1bfaebd782fd512e0cea4130a04064734a3 (diff)
parent733cc8aaace77e4e6b9a9c4a9facdcf7f734a029 (diff)
Merge branch 'master' of https://github.com/mamedev/mame
-rw-r--r--src/devices/machine/i82357.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/machine/i82357.cpp b/src/devices/machine/i82357.cpp
index 9b3be9c0905..c1ff793ab87 100644
--- a/src/devices/machine/i82357.cpp
+++ b/src/devices/machine/i82357.cpp
@@ -123,11 +123,11 @@ void i82357_device::map(address_map &map)
// NMI Enable Register (0x70, 72, 74, 76)
map(0x070, 0x077).lw8("nmi_rtc",
- [this](address_space &space, offs_t offset, u8 data)
+ [this](offs_t offset, u8 data)
{
m_nmi_enabled = !BIT(data, 7);
- m_out_rtc(space, 0, data & 0x7f);
+ m_out_rtc(0, data & 0x7f);
m_nmi_check->adjust(attotime::zero);
}).umask64(0xff);