Name: Anonymous 2013-01-31 15:36
Write a program that displays "Hello world" (without quotes) to the screen.
section .rodata
hstr: db 0x48, 0x65, 0x6c, 0x6c, 0x6f, 0x20 ,0x77, 0x6f, 0x6c, 0x72, 0x64, \
0x21, 0x0a
section .text
global _start
_start:
mov rax, 1
mov rdi, 1
mov rsi, hstr
mov rdx, 13
syscall
mov rax, 60
xor rdi, rdi
syscall