From 2d6d76bbe5cdea1075f49bba9dd45610a42f08c2 Mon Sep 17 00:00:00 2001 From: arg3nt <47928492+arg3nt@users.noreply.github.com> Date: Mon, 30 Sep 2019 23:28:23 -0700 Subject: [PATCH] Make description header of ADD instruction fit std formatting --- Instruction-Set.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Instruction-Set.md b/Instruction-Set.md index bda6cca..2a72fe7 100644 --- a/Instruction-Set.md +++ b/Instruction-Set.md @@ -149,7 +149,7 @@ Some instructions will change certain flags based on their result. These are in #### Description `ADD` replaces the destination operand with the sum of the source and destination operands. It sets the carry flag if there is an overflow. -### Pseudo code +#### Pseudo code ```py destination = destination + source ```