From d17c90edf76fbb060aa6577196b969d1e66de681 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 10 Oct 2020 11:25:14 -0400 Subject: [PATCH] Corrects ROL d, x. --- Processors/65816/Implementation/65816Storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Processors/65816/Implementation/65816Storage.cpp b/Processors/65816/Implementation/65816Storage.cpp index 3785aa523..930763b96 100644 --- a/Processors/65816/Implementation/65816Storage.cpp +++ b/Processors/65816/Implementation/65816Storage.cpp @@ -794,7 +794,7 @@ ProcessorStorage::ProcessorStorage() { /* 0x33 AND (d, s), y */ op(stack_relative_indexed_indirect, AND); /* 0x34 BIT d, x */ op(direct_x, BIT); /* 0x35 AND d, x */ op(direct_x, AND); - /* 0x36 ROL d, x */ op(absolute_x_rmw, ROL); + /* 0x36 ROL d, x */ op(direct_x_rmw, ROL); /* 0x37 AND [d], y */ op(direct_indirect_indexed_long, AND); /* 0x38 SEC i */ op(implied, SEC); /* 0x39 AND a, y */ op(absolute_y, AND);