aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/greet/Main.asm4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/greet/Main.asm b/examples/greet/Main.asm
index ae425ec..86b015d 100644
--- a/examples/greet/Main.asm
+++ b/examples/greet/Main.asm
@@ -2,13 +2,13 @@ global main
extern printf
section .rodata
-msg: db "Hello World!", 13, 10, 0
+message: db "Hello World!", 13, 10, 0
section .text
main:
sub rsp, 8
sub rsp, 32
- mov rcx, qword msg
+ mov rcx, qword message
call printf
add rsp, 32