From ca6420adc4e684cb957ae1a325cefdbb5acb8666 Mon Sep 17 00:00:00 2001 From: simon987 Date: Thu, 30 Jul 2020 18:38:51 -0400 Subject: [PATCH] Document ORG *directive* --- Assembler-directives.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assembler-directives.md b/Assembler-directives.md index a2b7302..1f04955 100644 --- a/Assembler-directives.md +++ b/Assembler-directives.md @@ -121,6 +121,6 @@ ORG 0x8000 my_var: DW 0x1234 .text -MOV A, [my_var] ; Value of A is now 0x8000 +MOV A, my_var ; Value of A is now 0x8000 brk ```