.globl main main: movl $4, %eax movl $1, %ebx movl $msg,%ecx movl $9, %edx int $0x80 ret .data msg: .ascii "*NOTHING*"