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 ```