; pxr.asm ; ; coded for linux x86 ; to compile: ; ; ; >$ nasm -f elf pxr.asm ; >$ ld -s -o pxr pxr.o ; ; section .text global _start msg db 'haX0r in pr0gr3ss!',0xa len equ $ - msg _start: mov edx,len mov ecx,msg mov ebx,1 mov eax,4 int 0x80 mov eax,1 int 0x80