Dmitry Telenkov 1 неделя назад
Родитель
Сommit
b6eb030ecc
1 измененных файлов с 13 добавлено и 0 удалено
  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
+
+