Dmitry Telenkov
1 viikko sitten
vanhempi
commit
b6eb030ecc
1 muutettua tiedostoa jossa
13 lisäystä ja
0 poistoa
-
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
|
|
|
+
|
|
|
+
|