Dmitry Telenkov
hace 1 semana
Se han
modificado 1 ficheros con
13 adiciones y
0 borrados
-
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
|
|
|
+
|
|
|
+
|