Name: Anonymous 2010-07-20 8:24
7kb of code for hello world?
section .data
output db "Hello",10
olen equ $ - output
section .text
global _start
_start:
xor rax,rax
inc rax
mov rdi,rax
mov rsi,output
mov rdx,olen
syscall
mov rax,60
mov rdi,0
syscall