summary refs log tree commit diff
path: root/hello.s
blob: 0349994458b3e756f0aa3278c373096f6942ab4e (plain) (blame)
1
2
3
4
5
6
7
    B main
hello DEFB "HELLO\n",0

    ALIGN
main ADR R0, hello
    SWI 3
    SWI 2