mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-17 10:06:21 +00:00
Add AddressingMode::ExtensionWord
to the executor.
This commit is contained in:
parent
6832cbeb31
commit
8808014a85
@ -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.
|
||||
|
Loading…
Reference in New Issue
Block a user