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,