diff options
author | 2021-01-24 13:33:07 +1100 | |
---|---|---|
committer | 2021-01-24 13:33:07 +1100 | |
commit | 78f6ff34a5d8839a88c8cf36703cf8afc67139a4 (patch) | |
tree | c58abf068ad2e6f2e5bb621f1cc0fe1d489b7f54 /src/devices/cpu/v30mz | |
parent | 051119c0914d40e086c42460650a34697d85edfd (diff) |
srcclean in preparation for branching release
Diffstat (limited to 'src/devices/cpu/v30mz')
-rw-r--r-- | src/devices/cpu/v30mz/v30mz.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/v30mz/v30mz.cpp b/src/devices/cpu/v30mz/v30mz.cpp index 2042932b1eb..8e106bd563c 100644 --- a/src/devices/cpu/v30mz/v30mz.cpp +++ b/src/devices/cpu/v30mz/v30mz.cpp @@ -12,10 +12,10 @@ Todo! - Double check cycle timing is 100%. - - Add penalties when BW, BP, SP, IX, IY etc are changed in the immediately - preceding instruction. - - wswan mjkiwame (at 0x40141) has rep in al,$b5 (f3 e4 b5). Should this - repeat the in instruction or is this a bug made by the programmer? + - Add penalties when BW, BP, SP, IX, IY etc are changed in the immediately + preceding instruction. + - wswan mjkiwame (at 0x40141) has rep in al,$b5 (f3 e4 b5). Should this + repeat the in instruction or is this a bug made by the programmer? ****************************************************************************/ @@ -2382,7 +2382,7 @@ void v30mz_cpu_device::execute_run() case 0x20: and_word(); store_ea_rm_word(m_dst); break; case 0x28: sub_word(); store_ea_rm_word(m_dst); break; case 0x30: xor_word(); store_ea_rm_word(m_dst); break; - case 0x38: sub_word(); break; // CMP + case 0x38: sub_word(); break; // CMP } break; |