From 66fe1a723fcaea5ec004e6b6322835a9e438d49f Mon Sep 17 00:00:00 2001 From: RainRat Date: Thu, 25 Apr 2024 21:54:37 -0700 Subject: [PATCH] Update labels.md fix typo --- docs/redcode/labels.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/redcode/labels.md b/docs/redcode/labels.md index 2133b14..df46aaf 100644 --- a/docs/redcode/labels.md +++ b/docs/redcode/labels.md @@ -65,7 +65,7 @@ MOV.I $-2, @-2 ; <- here bmb was replaced with -2 JMP.B $-2, $0 ; <- here top was replaced with -2 ``` -Notice that on the `add` instruction, the refence to `bmb` was replaced with +Notice that on the `add` instruction, the reference to `bmb` was replaced with `-1` since the `dat` instruction is one position above the `add` instruction. However on the `mov` instruction `bmb` was replaced with `-2` since the `dat` instruction is two positions above the `mov` instruction.