summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/68340.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2019-05-26 18:52:16 -0400
committer AJR <ajrhacker@users.noreply.github.com>2019-05-26 18:52:16 -0400
commit4261821fc5dc7b6c5d7da9dc4e38cf5ff5f31e7d (patch)
treef05a4a2fedc153b5a2b6afb397fddb0a91124e32 /src/devices/machine/68340.cpp
parentd1a06324220be08885216de57d03018a4e77d05c (diff)
mc68340: Fix interrupt vectoring
Diffstat (limited to 'src/devices/machine/68340.cpp')
-rw-r--r--src/devices/machine/68340.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/68340.cpp b/src/devices/machine/68340.cpp
index 5e4fc3fc121..312aabed99b 100644
--- a/src/devices/machine/68340.cpp
+++ b/src/devices/machine/68340.cpp
@@ -69,7 +69,7 @@ void m68340_cpu_device::update_ipl()
void m68340_cpu_device::internal_vectors_r(address_map &map)
{
- map(0xfffff0, 0xffffff).r(FUNC(m68340_cpu_device::int_ack)).umask16(0x00ff);
+ map(0xfffffff0, 0xffffffff).r(FUNC(m68340_cpu_device::int_ack)).umask16(0x00ff);
}