diff options
author | 2020-09-09 20:41:29 -0400 | |
---|---|---|
committer | 2020-09-09 20:41:29 -0400 | |
commit | 54321401fb792c5c4973fc6404b14fe4388cc3b4 (patch) | |
tree | 41dc2bc0854c88d7a4f0d6b1a7fe3b3e50b973f0 | |
parent | 19eb38ed609d743da060d46d6afe05ebfcad0905 (diff) |
st2205u.cpp: Fix last-minute copy/paste mistake
-rw-r--r-- | src/devices/cpu/m6502/st2205u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/m6502/st2205u.cpp b/src/devices/cpu/m6502/st2205u.cpp index 91c7c9a194f..a9417ec2cce 100644 --- a/src/devices/cpu/m6502/st2205u.cpp +++ b/src/devices/cpu/m6502/st2205u.cpp @@ -1121,7 +1121,7 @@ void st2302u_device::int_map(address_map &map) map(0x0006, 0x0006).rw(FUNC(st2302u_device::psc_r), FUNC(st2302u_device::psc_w)); map(0x0008, 0x000d).rw(FUNC(st2302u_device::pctrl_r), FUNC(st2302u_device::pctrl_w)); map(0x000e, 0x000e).rw(FUNC(st2302u_device::pfc_r), FUNC(st2302u_device::pfc_w)); - map(0x000f, 0x000f).rw(FUNC(st2205u_device::pfd_r), FUNC(st2205u_device::pfd_w)); + map(0x000f, 0x000f).rw(FUNC(st2302u_device::pfd_r), FUNC(st2302u_device::pfd_w)); map(0x0012, 0x0012).rw(FUNC(st2302u_device::sctr_r), FUNC(st2302u_device::sctr_w)); map(0x0013, 0x0013).rw(FUNC(st2302u_device::sckr_r), FUNC(st2302u_device::sckr_w)); map(0x0014, 0x0014).rw(FUNC(st2302u_device::ssr_r), FUNC(st2302u_device::ssr_w)); |