From 48f286da121991bfc8698bfe3e28f2b465d62386 Mon Sep 17 00:00:00 2001 From: Kevin Ramharak Date: Tue, 2 Jan 2018 11:19:25 +0100 Subject: [PATCH] more typo's --- Instruction-Set.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Instruction-Set.md b/Instruction-Set.md index 8d7a0e2..6f9e696 100644 --- a/Instruction-Set.md +++ b/Instruction-Set.md @@ -650,7 +650,7 @@ if count == 1: if new_sign_bit == 1: CARRY_FLAG = 1 else: - CARRY_FLAG = 1 + CARRY_FLAG = 0 ``` # JC @@ -724,7 +724,7 @@ if count == 1: if (destination & 0x01) == 1: CARRY_FLAG = 1 else: - CARRY_FLAG = 1 + CARRY_FLAG = 0 ``` # JO