From 0eddced4553fcbc837e64ea202f49bdccea04abb Mon Sep 17 00:00:00 2001 From: Alexander Kuleshov Date: Fri, 6 Feb 2026 20:32:21 +0500 Subject: [PATCH] asm-2: fix typo in instruction Signed-off-by: Alexander Kuleshov --- content/asm_2.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/asm_2.md b/content/asm_2.md index dab7baa..82bfd2d 100644 --- a/content/asm_2.md +++ b/content/asm_2.md @@ -188,7 +188,7 @@ After defining variables, we can start using them in our program's code. To use ```assembly ;; Move the address of the `num1` variable to the al register -move al, num1 +mov al, num1 ``` To get the actual value located in the given address, we need to specify the variable name in square brackets: