@@ -1,14 +0,0 @@
-; begining of the assembly program
-
-section .data
-section .text
-global _start
-_start:
- mov rbx, 5
- mov rdi, rbx
- mov rax,60
- syscall
@@ -1,18 +0,0 @@
- mov eax,9
- mov ebx, eax
- mov eax,6
- sub eax, ebx
- neg eax
- mov rdi,0
- mov eax,8
- add eax,ebx
- mov rdi,99
@@ -1,23 +0,0 @@
- mov eax,5
- add eax, ebx
- mov eax,7
@@ -1,20 +0,0 @@
-%define SYS_EXIT 60
-%define SYS_WRITE 1
-%define STD_OUT 1
- mov rax,SYS_EXIT
@@ -1,31 +0,0 @@
-[BITS 64]
-%define STD_IN 0
-%define STD_ERR 2
-section .bss
-; nada
- mov rax,6
- push rax
- mov rax,7
- mov rax,9
- pop rbx
- imul rax, rbx
- add rax, rbx
@@ -1,32 +0,0 @@
- mov rax,5
- mov rax,8
-; end of program