# Hello world in 80x86 Linux Assembly # It's a bit obfuscated, but thats ok! # Version 0.0.1 ... hack and enjoy ... .data hello: .ascii "\x0dHello\x20world!\x0A" .text .global _start _start: mov $4,%eax inc %ebx inc %ecx add $hello,%ecx mov hello,%dl int $0x80 sub $12,%eax int $0x80