From c3d3c00a616ebb55c7e8a396b1ca80253ce6ecbf Mon Sep 17 00:00:00 2001 From: 0kmg <9137159+0kmg@users.noreply.github.com> Date: Sat, 22 Oct 2022 15:32:05 -0700 Subject: machine/mos6530n.cpp: Fixed io_w offset error. (#10463) --- src/devices/machine/mos6530n.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/devices/machine/mos6530n.cpp b/src/devices/machine/mos6530n.cpp index aeaef720af5..31c174f29cc 100644 --- a/src/devices/machine/mos6530n.cpp +++ b/src/devices/machine/mos6530n.cpp @@ -106,7 +106,7 @@ void mos6532_new_device::io_w(offs_t offset, uint8_t data) if (offset == 0x1c || offset == 0x1d || offset == 0x1e || offset == 0x1f) timer_on_w(offset&3, data); if (offset == 0x04 || offset == 0x05 || offset == 0x06 || offset == 0x07) edge_w(data); - if (offset == 0x0c || offset == 0x0d || offset == 0xea || offset == 0x0f) edge_w(data); + if (offset == 0x0c || offset == 0x0d || offset == 0x0e || offset == 0x0f) edge_w(data); } -- cgit v1.2.3