From 466ca38dfa1b5a3147643fa30aabfa2aeedf79bf Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Wed, 7 Oct 2020 18:05:42 -0400 Subject: [PATCH] Corrects TXY and TYX; kudos to PatrickvL for the spot! --- Processors/65816/Implementation/65816Implementation.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Processors/65816/Implementation/65816Implementation.hpp b/Processors/65816/Implementation/65816Implementation.hpp index 85f997bad..6f7415c4c 100644 --- a/Processors/65816/Implementation/65816Implementation.hpp +++ b/Processors/65816/Implementation/65816Implementation.hpp @@ -344,11 +344,11 @@ template void Processor::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: