forked from chic_luke/figasm
Update figa.s
This commit is contained in:
parent
91c847659e
commit
f1008e49ad
41
figa.s
41
figa.s
@ -1,31 +1,16 @@
|
|||||||
.section .data
|
section .data
|
||||||
|
text1 db "Che schifo la figa.",10,"Meglio Linux",10
|
||||||
|
|
||||||
schifo:
|
section .text
|
||||||
.ascii "Che schifo la figa.\n"
|
global _start
|
||||||
|
|
||||||
schifo_len:
|
|
||||||
.long . - schifo
|
|
||||||
|
|
||||||
meglio:
|
|
||||||
.ascii "Meglio Linux!\n"
|
|
||||||
|
|
||||||
meglio_len:
|
|
||||||
.long . - meglio
|
|
||||||
|
|
||||||
.section .text
|
|
||||||
.global _start
|
|
||||||
|
|
||||||
_start:
|
_start:
|
||||||
movl $4, %eax
|
mov rax, 1
|
||||||
movl $1, %ebx
|
mov rdi, 1
|
||||||
leal schifo, %ecx
|
mov rsi, text1
|
||||||
movl schifo_len, %edx
|
mov rdx, 33
|
||||||
int $0x80
|
syscall
|
||||||
movl $4, %eax
|
|
||||||
movl $1, %ebx
|
mov rax, 60
|
||||||
leal meglio, %ecx
|
mov rdi, 0
|
||||||
movl meglio_len, %edx
|
syscall
|
||||||
int $0x80
|
|
||||||
movl $1, %eax
|
|
||||||
xorl %ebx, %ebx
|
|
||||||
int $0x80
|
|
Loading…
Reference in New Issue
Block a user