Dmitry Telenkov 5 giorni fa
parent
commit
b6eb030ecc
1 ha cambiato i file con 13 aggiunte e 0 eliminazioni
  1. 13 0
      asm/test_7.asm

+ 13 - 0
asm/test_7.asm

@@ -0,0 +1,13 @@
+    .file "test_7.asm"
+    .data
+str:
+    .ascii "test"
+    .text
+    .global _start
+_start:
+
+    //exit
+    movq $60, %rax
+    movq $0, %rdi
+
+