From 61d4c69e45a6d729fc2cfaffa20b8cd1aed7f29b Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Mon, 4 Mar 2024 13:25:40 -0500 Subject: [PATCH] Fix template parameter reference. --- InstructionSets/ARM/Registers.hpp | 2 +- Processors/6502Esque/6502Esque.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/InstructionSets/ARM/Registers.hpp b/InstructionSets/ARM/Registers.hpp index 9278acb40..6f9066ccc 100644 --- a/InstructionSets/ARM/Registers.hpp +++ b/InstructionSets/ARM/Registers.hpp @@ -162,7 +162,7 @@ struct Registers { break; } - set_pc(uint32_t(exception)); + set_pc(uint32_t(type)); } // MARK: - Condition tests. diff --git a/Processors/6502Esque/6502Esque.hpp b/Processors/6502Esque/6502Esque.hpp index 429f0a2bb..b62180d0a 100644 --- a/Processors/6502Esque/6502Esque.hpp +++ b/Processors/6502Esque/6502Esque.hpp @@ -34,7 +34,7 @@ enum Register { X, Y, - // These exist on a 65816 only. + // These `ex`ist on a 65816 only. EmulationFlag, DataBank, ProgramBank,