1
0
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:
Thomas Harte 2020-10-07 18:05:42 -04:00
parent 93b0839036
commit 466ca38dfa

View File

@ -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: