Dmitry Telenkov 1 周之前
父节点
当前提交
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
+
+