From 071ad6b767230e856e46dd596a284511364a7a1b Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Sat, 10 Oct 2020 22:16:35 -0400 Subject: [PATCH] I don't think RTL is needed; JML looks like it covers it. --- Processors/65816/Implementation/65816Implementation.hpp | 1 - Processors/65816/Implementation/65816Storage.hpp | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/Processors/65816/Implementation/65816Implementation.hpp b/Processors/65816/Implementation/65816Implementation.hpp index 19a4e5278..e45232492 100644 --- a/Processors/65816/Implementation/65816Implementation.hpp +++ b/Processors/65816/Implementation/65816Implementation.hpp @@ -818,7 +818,6 @@ template void Processor::run_for(const Cycles // TODO: // STP, WAI, - // RTL, default: assert(false); diff --git a/Processors/65816/Implementation/65816Storage.hpp b/Processors/65816/Implementation/65816Storage.hpp index 011892c70..e032e638d 100644 --- a/Processors/65816/Implementation/65816Storage.hpp +++ b/Processors/65816/Implementation/65816Storage.hpp @@ -175,7 +175,7 @@ enum Operation: uint8_t { // These unpack values from the data buffer, which has been filled // from the stack. - RTI, RTL, + RTI, /// Loads the PC with the contents of the data buffer. JMPind,