cpu/i960: Added cycle count adjustment for dmovt instruction. (#9378)

This commit is contained in:
Damian Rogers 2022-03-10 03:02:48 +09:00 committed by GitHub
parent cec6cd7bd8
commit 18eb8f756a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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;