From 92ad493aaec8325637a467903b506ec22c49f485 Mon Sep 17 00:00:00 2001 From: Manuel Palenzuela Date: Tue, 15 Oct 2019 20:51:15 +0100 Subject: Initial Commit --- 04.s | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 04.s (limited to '04.s') diff --git a/04.s b/04.s new file mode 100644 index 0000000..c942d1b --- /dev/null +++ b/04.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 + submain ADR R0, bye + SWI 3 + + B submain -- cgit 1.4.1