diff --git a/Instruction-Set.md b/Instruction-Set.md index cc31952..36c84b8 100644 --- a/Instruction-Set.md +++ b/Instruction-Set.md @@ -645,7 +645,7 @@ else: CARRY_FLAG = 0 ``` -# JC +### JC #### Details | mnemonic | opcode | operands | carry | zero | sign | overflow | break | | -------- | ------ | -------- | ----- | ---- | ---- | -------- | ----- | @@ -660,7 +660,7 @@ if CARRY_FLAG == 1: IP = target ``` -# JNC +### JNC #### Details | mnemonic | opcode | operands | carry | zero | sign | overflow | break | | -------- | ------ | -------- | ----- | ---- | ---- | -------- | ----- | @@ -719,7 +719,7 @@ else: CARRY_FLAG = 0 ``` -# JO +### JO #### Details | mnemonic | opcode | operands | carry | zero | sign | overflow | break | | -------- | ------ | -------- | ----- | ---- | ---- | -------- | ----- | @@ -734,7 +734,7 @@ if OVERFLOW_FLAG == 1: IP = target ``` -# JNO +### JNO #### Details | mnemonic | opcode | operands | carry | zero | sign | overflow | break | | -------- | ------ | -------- | ----- | ---- | ---- | -------- | ----- |