From 573a8c6b490a080cf728cdcb11e5a14ddf50556d Mon Sep 17 00:00:00 2001 From: Miquel Sabaté Solà Date: Fri, 22 Nov 2024 15:58:35 +0100 Subject: usr: Rename foo/bar to fizz/buzz MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When creating the user space binaries I forgot about their proper names, which is funny on its own. Anyways, let's get them the name they were intended. Signed-off-by: Miquel Sabaté Solà alksjdlkajd Signed-off-by: Miquel Sabaté Solà --- usr/src/buzz.S | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 usr/src/buzz.S (limited to 'usr/src/buzz.S') diff --git a/usr/src/buzz.S b/usr/src/buzz.S new file mode 100644 index 0000000..d5f83c5 --- /dev/null +++ b/usr/src/buzz.S @@ -0,0 +1,13 @@ +.global _start +.text + +_start: + li a7, 1 + la a0, buzz + ecall +.Loop: + j .Loop + +.section .rodata +buzz: + .string "buzz\n" -- cgit v1.2.3