diff options
author | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-14 23:57:49 +0100 |
---|---|---|
committer | Manuel Palenzuela <manuelpalenzuelamerino@gmail.com> | 2019-10-14 23:57:49 +0100 |
commit | 791ac123496aa875685187d01843e0c2d1aec9f2 (patch) | |
tree | 5f89180f6076f32ea2d68a131fcc56dd89e05632 /hello.s | |
download | komodo-791ac123496aa875685187d01843e0c2d1aec9f2.tar.gz komodo-791ac123496aa875685187d01843e0c2d1aec9f2.tar.bz2 komodo-791ac123496aa875685187d01843e0c2d1aec9f2.zip |
Initial commit
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 |