summary refs log blame commit diff
path: root/03.s
blob: 61f6c88f79ecd0096dc484ff5a9b58cd11917760 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12











                                 
    B main

hello DEFB "Hello World\n",0
bye   DEFB "Goodbye Universe\n",0

    ALIGN
main ADR R0, hello
     SWI 3
     ADR R0, bye
     SWI 3

     B main