1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-06-25 18:30:07 +00:00

Add AddressingMode::ExtensionWord to the executor.

This commit is contained in:
Thomas Harte 2022-12-19 11:07:58 -05:00
parent 6832cbeb31
commit 8808014a85

View File

@ -303,6 +303,10 @@ Executor<model, BusHandler>::State::calculate_effective_address(Preinstruction i
}
ea.requires_fetch = false;
break;
case AddressingMode::ExtensionWord:
ea.value.l = read_pc<uint16_t>();
ea.requires_fetch = false;
break;
//
// Absolute addresses.