blob: a9fdf8373b3552b9b1b3d087f1fa01c488eac478 [file] [log] [blame] [raw]
.section .rodata
helloworld:
.string "Hello world\n"
.text
.global _start
_start:
mov a3, #12
ldr a2, =helloworld
mov a1, #1
swi #0x900004
mov a1, #0
swi #0x900001