1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-03 06:29:47 +00:00

Correct typos.

This commit is contained in:
Thomas Harte 2022-04-29 07:57:02 -04:00
parent abd2a831a3
commit 8066b19f93
2 changed files with 2 additions and 2 deletions
InstructionSets/M68k

@ -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: {

@ -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 <