summary refs log blame commit diff
path: root/02.s
blob: bee9c5411a4a32ce7f690a9e0a333e824fe45ea2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                       
    B main

hello DEFB "Hello World\n",0
bye DEFB "Goodbye Universe\n",0
name DEFB "My name is Steve Bagley\n",0

    ALIGN

main    ADR R0, hello
    SWI 3

    ADR R0, name
    SWI 3

    ADR R0, bye
    SWI 3

    SWI 2