x86_64-linux-asm/helloworld/hello.asm
2021-09-07 06:55:26 -04:00

16 lines
199 B
NASM

section .data
text db "Hello World",10
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, text
mov rdx, 14
syscall
mov rax, 60
mov edi, 0
syscall