.include "defines.h".datahello: .string "hello world\n" .globl mainmain: movl $SYS_write,%eax movl $STDOUT,%ebx movl $hello,%ecx movl $12,%edx int $0x80 ret