| 1234567891011121314151617181920 |
- ; begining of the assembly program
- %define SYS_EXIT 60
- %define SYS_WRITE 1
- %define STD_OUT 1
- section .data
- section .text
- global _start
- _start:
- mov eax,6
- mov ebx, eax
- mov eax,9
- add eax, ebx
- mov rdi,0
- mov rax,SYS_EXIT
- syscall
|