1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-08-08 14:25:05 +00:00

Correction: the test for not skipping an operand fetch requires a 65C02.

This commit is contained in:
Thomas Harte
2018-08-15 22:07:17 -04:00
parent 6806193dc2
commit 60e00ddd02

View File

@@ -98,7 +98,7 @@ if(number_of_cycles <= Cycles(0)) break;
// governs everything else on the 6502: that two bytes will always // governs everything else on the 6502: that two bytes will always
// be fetched. // be fetched.
if( if(
is_65c02(personality) || !is_65c02(personality) ||
(operation_&7) != 3 || (operation_&7) != 3 ||
operation_ == 0xcb || operation_ == 0xcb ||
operation_ == 0xdb operation_ == 0xdb