blob: de2911db5dbec74f13af99f2a32c28b6d3116161 [file] [log] [blame] [raw]
.data
helloworld:
.ascii "Hello world\n"
.text
.globl start
start:
pushl $12
pushl $helloworld
pushl $1
subl $4, %esp
movl $4, %eax
int $0x80
addl $16, %esp
pushl $0
subl $4, %esp
movl $1, %eax
int $0x80