From 733cc8aaace77e4e6b9a9c4a9facdcf7f734a029 Mon Sep 17 00:00:00 2001 From: Patrick Mackinlay Date: Thu, 16 May 2019 11:34:26 +0700 Subject: [PATCH] i83357: simplify handler (nw) --- src/devices/machine/i82357.cpp | 4 ++-- 1 file 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);