figasm64/figa.s

16 lines
192 B
ArmAsm
Raw Normal View History

2023-10-30 01:12:20 +01:00
section .data
text1 db "Che schifo la figa.",10,"Meglio Linux",10
2020-07-01 00:22:49 +02:00
2023-10-30 01:12:20 +01:00
section .text
global _start
2020-07-01 00:22:49 +02:00
_start:
2023-10-30 01:12:20 +01:00
mov rax, 1
mov rdi, 1
mov rsi, text1
mov rdx, 33
syscall
mov rax, 60
mov rdi, 0
syscall