1
0
mirror of https://github.com/TomHarte/CLK.git synced 2025-04-05 04:37:41 +00:00

Remove errant semicolon.

This commit is contained in:
Thomas Harte 2022-05-12 16:21:36 -04:00
parent b7d1bff0c7
commit 6d43576db7

View File

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