blob: 8628ef79f1cd67d8d3c0e1bc119e408ad79149a5 [file] [log] [blame] [raw]
.section .rodata
helloworld:
.string "Hello world\n"
.text
.global _start
_start:
movl $4, %eax
movl $1, %ebx
movl $helloworld, %ecx
movl $12, %edx
int $0x80
movl $1, %eax
movl $0, %ebx
int $0x80