From d609dcb35dafebeafced9c40d92ddd5da630aa54 Mon Sep 17 00:00:00 2001 From: cheapie Date: Sat, 30 May 2026 08:58:29 -0500 Subject: Organize files better and include binaries for assembly samples --- assembly/hello/hello.S | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 assembly/hello/hello.S (limited to 'assembly/hello/hello.S') 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" -- cgit v1.2.3