Dmitry Telenkov
5 giorni fa
1 ha cambiato i file con
13 aggiunte e
0 eliminazioni
-
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
|
|
|
+
|
|
|
+
|