From ee73f5042bf651e265b7c694fa2bfe2fcdae1758 Mon Sep 17 00:00:00 2001 From: Ethan Lafrenais Date: Tue, 2 Jan 2018 09:51:59 -0500 Subject: [PATCH] Fix header consistency --- Instruction-Set.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 | | -------- | ------ | -------- | ----- | ---- | ---- | -------- | ----- |