diff options
-rw-r--r-- | src/arch/x86_64.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/arch/x86_64.md b/src/arch/x86_64.md index 964bf00..f3d7088 100644 --- a/src/arch/x86_64.md +++ b/src/arch/x86_64.md @@ -66,7 +66,7 @@ lea rax, [rip+.my_str] // load addr of .my_str into rax ## Size directives Explicitly specify size of the operation. -```nasm +```x86asm mov byte ptr [rax], 0xff // save 1 byte(s) at [rax] mov word ptr [rax], 0xff // save 2 byte(s) at [rax] mov dword ptr [rax], 0xff // save 4 byte(s) at [rax] |