mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-16 11:30:22 +00:00
Adds direct indirect.
This commit is contained in:
parent
9a05c68ce7
commit
825201f4f2
@ -205,14 +205,21 @@ template <typename BusHandler> void Processor<BusHandler>::run_for(const Cycles
|
||||
break;
|
||||
|
||||
case OperationConstructDirect:
|
||||
data_address_ = direct_ + instruction_buffer_.value;
|
||||
data_address_ = (direct_ + instruction_buffer_.value) & 0xffff;
|
||||
if(!(direct_&0xff)) {
|
||||
++next_op_;
|
||||
}
|
||||
break;
|
||||
|
||||
case OperationConstructDirectIndexedIndirect:
|
||||
data_address_ = direct_ + x() + instruction_buffer_.value;
|
||||
data_address_ = data_bank_ + (direct_ + x() + instruction_buffer_.value) & 0xffff;
|
||||
if(!(direct_&0xff)) {
|
||||
++next_op_;
|
||||
}
|
||||
break;
|
||||
|
||||
case OperationConstructDirectIndirect:
|
||||
data_address_ = data_bank_ + (direct_ + instruction_buffer_.value) & 0xffff;
|
||||
if(!(direct_&0xff)) {
|
||||
++next_op_;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user