Return Styles: Pseud0ch, Terminal, Valhalla, NES, Geocities, Blue Moon. Entire thread

/prog/ challenge [extreme edition]

Name: Anonymous 2013-01-31 15:36

Write a program that displays "Hello world" (without quotes) to the screen.

Name: Anonymous 2013-01-31 23:45

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

Newer Posts
Don't change these.
Name: Email:
Entire Thread Thread List