Files
Learning_Assembly/x86_64/Hello/hello64.asm
2025-04-14 17:05:27 -04:00

17 lines
254 B
NASM

section .data
hello db "Hello, World!", 10 ; Declared bits with a new line term (10)
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, hello
mov rdx, 14
syscall
mov rax, 60
mov rdi, 0
syscall