Assembly/001-hello_world.s
Ahmet Kaan GÜMÜŞ bc03da310d feat: hello_world
2024-01-03 20:51:11 +03:00

16 lines
186 B
ArmAsm

.global _start
.intel_syntax noprefix
_start:
mov rax, 1
mov rdi, 1
lea rsi, [hello_world]
mov rdx, 13
syscall
//exit
mov rax, 60
syscall
hello_world:
.asciz "Hello World\n"