From 6d43576db71b757c4b568939a1a7e8597bf2d596 Mon Sep 17 00:00:00 2001 From: Thomas Harte Date: Thu, 12 May 2022 16:21:36 -0400 Subject: [PATCH] Remove errant semicolon. --- InstructionSets/M68k/Implementation/PerformImplementation.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/InstructionSets/M68k/Implementation/PerformImplementation.hpp b/InstructionSets/M68k/Implementation/PerformImplementation.hpp index 6c491d017..2f8934d88 100644 --- a/InstructionSets/M68k/Implementation/PerformImplementation.hpp +++ b/InstructionSets/M68k/Implementation/PerformImplementation.hpp @@ -45,7 +45,7 @@ template < result += (destination & 0xf0) + (source & 0xf0) + - (((9 - result) >> 4) & 0x06); // i.e. ((result > 0x09) ? 0x06 : 0x00); + (((9 - result) >> 4) & 0x06); // i.e. ((result > 0x09) ? 0x06 : 0x00) result += ((0x9f - result) >> 4) & 0x60; // i.e. ((result > 0x9f) ? 0x60 : 0x00) // Set all flags essentially as if this were normal addition.