18 lines
320 B
NASM
18 lines
320 B
NASM
|
|
|
|
section .data
|
|
msg db "Gamarjoba, munde",10
|
|
msg_len equ $ - msg
|
|
|
|
section .text
|
|
|
|
mov rax, 1 ; syswrite syscall
|
|
mov rdi, 1 ; write to fd 1 - stdout
|
|
mov rsi, msg ; write buffer at msg
|
|
mov rdx, msg_len ; write that many bytes
|
|
syscall
|
|
|
|
mov rax, 60 ; sys_exit
|
|
mov rdi, 0 ; with code 0
|
|
syscall
|