summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Damian Rogers <damian@sudden-desu.net>2022-03-10 03:02:48 +0900
committer GitHub <noreply@github.com>2022-03-10 05:02:48 +1100
commit18eb8f756adbaaa005e60114dff03652044b5e54 (patch)
tree201bfdcf168b34a3922f95a1529b2063fe0dcbc5
parentcec6cd7bd8d7f138e347d7caaedb2eada7a65526 (diff)
cpu/i960: Added cycle count adjustment for dmovt instruction. (#9378)
-rw-r--r--src/devices/cpu/i960/i960.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/devices/cpu/i960/i960.cpp b/src/devices/cpu/i960/i960.cpp
index 9edd9f717d1..110a752dbdc 100644
--- a/src/devices/cpu/i960/i960.cpp
+++ b/src/devices/cpu/i960/i960.cpp
@@ -1464,6 +1464,7 @@ void i960_cpu_device::execute_op(uint32_t opcode)
condition code (CC) is set to 000; otherwise the condition code is set to
010.
*/
+ m_icount -= 7;
t1 = get_1_ri(opcode);
set_ri(opcode, t1);
m_AC &= 0xfff8;