summary refs log blame commit diff
path: root/04.s
blob: c942d1b89d1c97e111f487a84bbda07cf44fd9ee (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
  submain     ADR R0, bye
       SWI 3
 
       B submain