diff options
Diffstat (limited to 'hello.s')
-rw-r--r-- | hello.s | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/hello.s b/hello.s new file mode 100644 index 0000000..0349994 --- /dev/null +++ b/hello.s @@ -0,0 +1,7 @@ + B main +hello DEFB "HELLO\n",0 + + ALIGN +main ADR R0, hello + SWI 3 + SWI 2 |