summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Patrick Mackinlay <pmackinlay@hotmail.com>2019-05-16 11:34:26 +0700
committer Patrick Mackinlay <pmackinlay@hotmail.com>2019-05-16 11:34:26 +0700
commit733cc8aaace77e4e6b9a9c4a9facdcf7f734a029 (patch)
tree0b0c211be30d1243b67f0ba27c98f261c7ee737e
parent72712de88ad8787a3dc9afd4d43b076e5fa6fe72 (diff)
i83357: simplify handler (nw)
-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);