summary refs log tree commit diff
path: root/03.s
diff options
context:
space:
mode:
authorManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-10-15 20:51:15 +0100
committerManuel Palenzuela <manuelpalenzuelamerino@gmail.com>2019-10-15 20:51:15 +0100
commit92ad493aaec8325637a467903b506ec22c49f485 (patch)
tree41a20e36bdb2eb46790b4b999167a0e8df582e87 /03.s
downloadArm_Programming-92ad493aaec8325637a467903b506ec22c49f485.tar.gz
Arm_Programming-92ad493aaec8325637a467903b506ec22c49f485.tar.bz2
Arm_Programming-92ad493aaec8325637a467903b506ec22c49f485.zip
Initial Commit
Diffstat (limited to '03.s')
-rw-r--r--03.s12
1 files changed, 12 insertions, 0 deletions
diff --git a/03.s b/03.s
new file mode 100644
index 0000000..61f6c88
--- /dev/null
+++ b/03.s
@@ -0,0 +1,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