mirror of
https://github.com/TomHarte/CLK.git
synced 2025-01-11 08:30:55 +00:00
Corrects TXY and TYX; kudos to PatrickvL for the spot!
This commit is contained in:
parent
93b0839036
commit
466ca38dfa
@ -344,11 +344,11 @@ template <typename BusHandler> void Processor<BusHandler>::run_for(const Cycles
|
||||
break;
|
||||
|
||||
case TXY:
|
||||
LD(x_, y_.full, x_masks_);
|
||||
LD(y_, x_.full, x_masks_);
|
||||
break;
|
||||
|
||||
case TYX:
|
||||
LD(y_, x_.full, x_masks_);
|
||||
LD(x_, y_.full, x_masks_);
|
||||
break;
|
||||
|
||||
case TAX:
|
||||
|
Loading…
x
Reference in New Issue
Block a user