
Untitled
By: a guest on
Jun 12th, 2012 | syntax:
ASM (NASM) | size: 0.35 KB | hits: 21 | expires: Never
section .data
str: db 'Pedrobear is a faggot',10
str1: equ $-str
section .text
global_start
_start:
mov eax,4
mov ebx,1
mov ecx,str
mov edx,str1
int 80h
mov eax,1
mov ebx,0
int 80h