diff options
| author | Fuwn <[email protected]> | 2022-02-09 01:27:52 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-06-09 07:46:05 +0000 |
| commit | c4ee3f7c484f3ab5259f182d788fe94b7a913f04 (patch) | |
| tree | 36f73307690f0beffb3aa87d3183f87f673eb387 /examples | |
| parent | fix(divina_compile): single package support (diff) | |
| download | divina-c4ee3f7c484f3ab5259f182d788fe94b7a913f04.tar.xz divina-c4ee3f7c484f3ab5259f182d788fe94b7a913f04.zip | |
chore(xamples/greet): rename global
Diffstat (limited to 'examples')
| -rw-r--r-- | examples/greet/Main.asm | 4 |
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 |