summaryrefslogtreecommitdiff
path: root/assembly/hello/hello.S
diff options
context:
space:
mode:
authorcheapie <cheapiephp@gmail.com>2026-05-30 08:58:29 -0500
committercheapie <cheapiephp@gmail.com>2026-05-30 08:58:29 -0500
commitd609dcb35dafebeafced9c40d92ddd5da630aa54 (patch)
treebe5b1083f2f12173dbe936306e46a11cff4d62ea /assembly/hello/hello.S
parent28be6fac111899c930c8072cd42bcbd7be6f5d40 (diff)
downloadrvcontroller-d609dcb35dafebeafced9c40d92ddd5da630aa54.tar
rvcontroller-d609dcb35dafebeafced9c40d92ddd5da630aa54.tar.gz
rvcontroller-d609dcb35dafebeafced9c40d92ddd5da630aa54.tar.bz2
rvcontroller-d609dcb35dafebeafced9c40d92ddd5da630aa54.tar.xz
rvcontroller-d609dcb35dafebeafced9c40d92ddd5da630aa54.zip
Organize files better and include binaries for assembly samples
Diffstat (limited to 'assembly/hello/hello.S')
-rw-r--r--assembly/hello/hello.S6
1 files changed, 6 insertions, 0 deletions
diff --git a/assembly/hello/hello.S b/assembly/hello/hello.S
new file mode 100644
index 0000000..3eecf13
--- /dev/null
+++ b/assembly/hello/hello.S
@@ -0,0 +1,6 @@
+la a0,message
+li a7,4
+ecall
+li a7,10
+ecall
+message: .asciz "Hello, world!\n"