summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2020-09-08 16:10:08 -0400
committer AJR <ajrhacker@users.noreply.github.com>2020-09-08 16:10:08 -0400
commit928771a35af0ec6d4b6e197d9dd3d707a0acd9a2 (patch)
tree92dcbbfe85d1096a0d274c053085f961f15fc6cf
parent61fb20463b8ddc88a13ca57bc8a4696504917a85 (diff)
ns32000: Fix EXIT
-rw-r--r--src/devices/cpu/ns32000/ns32000.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/cpu/ns32000/ns32000.cpp b/src/devices/cpu/ns32000/ns32000.cpp
index 362c090ab37..734e878f811 100644
--- a/src/devices/cpu/ns32000/ns32000.cpp
+++ b/src/devices/cpu/ns32000/ns32000.cpp
@@ -769,7 +769,7 @@ void ns32000_device::execute_run()
}
}
SP = m_fp;
- m_fp = space(0).read_word_unaligned(SP);
+ m_fp = space(0).read_dword_unaligned(SP);
SP += 4;
}
m_pc += bytes;