From 18821b4589398fe69598f741cfd339579081bc70 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Tue, 8 Feb 2022 17:27:52 -0800 Subject: =?UTF-8?q?chore(=1Bxamples/greet):=20rename=20global?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- examples/greet/Main.asm | 4 ++-- 1 file 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 -- cgit v1.2.3