From 8066b19f932a6b7d646e96e813c3ab5e1d490dea Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Fri, 29 Apr 2022 07:57:02 -0400 Subject: [PATCH] Correct typos. --- InstructionSets/M68k/Implementation/PerformImplementation.hpp | 2 +- InstructionSets/M68k/Perform.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/InstructionSets/M68k/Implementation/PerformImplementation.hpp b/InstructionSets/M68k/Implementation/PerformImplementation.hpp index d33db16fa..681b24d09 100644 --- a/InstructionSets/M68k/Implementation/PerformImplementation.hpp +++ b/InstructionSets/M68k/Implementation/PerformImplementation.hpp @@ -64,7 +64,7 @@ template < #define add_overflow() ((result ^ destination) & ~(destination ^ source)) switch(operation) { /* - ABCD adds the lowest bytes form the source and destination using BCD arithmetic, + ABCD adds the lowest bytes from the source and destination using BCD arithmetic, obeying the extend flag. */ case Operation::ABCD: { diff --git a/InstructionSets/M68k/Perform.hpp b/InstructionSets/M68k/Perform.hpp index ac3fc3035..d6038bb4a 100644 --- a/InstructionSets/M68k/Perform.hpp +++ b/InstructionSets/M68k/Perform.hpp @@ -23,7 +23,7 @@ struct NullFlowController { }; /// Performs @c op using @c source and @c dest (which mmay be ignored as per the semantics of the operation). -/// And change in provcessor status will be applied to @c status. If this operation raises an exception, causes a +/// And change in processor status will be applied to @c status. If this operation raises an exception, causes a /// branch, or consumes additional cycles due to the particular value of the operands (on the 68000, think DIV or MUL), /// that'll be notified to the @c flow_controller. template <