blob: 65aee247a753a1adb371fd8b2d28347637bb9ebd [file] [log] [blame] [raw]
.data
helloworld:
.ascii "Hello world\n"
.text
.globl start
start:
movq $12, %rdx
leaq helloworld(%rip), %rsi
movl $1, %edi
movq $0x2000004, %rax
syscall
movl $0, %edi
movq $0x2000001, %rax
syscall