aboutsummaryrefslogtreecommitdiff
path: root/usr/src
diff options
context:
space:
mode:
authorMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-22 15:58:35 +0100
committerMiquel Sabaté Solà <mikisabate@gmail.com>2024-11-22 16:09:53 +0100
commit573a8c6b490a080cf728cdcb11e5a14ddf50556d (patch)
tree1352f00980494065ff1b2bc14b6f94c3341ea85b /usr/src
parentdcda5731ecbbce70edeaa7662e9ea0fc190a1943 (diff)
downloadfbos-573a8c6b490a080cf728cdcb11e5a14ddf50556d.tar.gz
fbos-573a8c6b490a080cf728cdcb11e5a14ddf50556d.zip
usr: Rename foo/bar to fizz/buzz
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à <mikisabate@gmail.com> alksjdlkajd Signed-off-by: Miquel Sabaté Solà <mikisabate@gmail.com>
Diffstat (limited to 'usr/src')
-rw-r--r--usr/src/buzz.S (renamed from usr/src/bar.S)6
-rw-r--r--usr/src/fizz.S (renamed from usr/src/foo.S)6
-rw-r--r--usr/src/fizzbuzz.S (renamed from usr/src/foobar.S)6
3 files changed, 9 insertions, 9 deletions
diff --git a/usr/src/bar.S b/usr/src/buzz.S
index ee86b3e..d5f83c5 100644
--- a/usr/src/bar.S
+++ b/usr/src/buzz.S
@@ -3,11 +3,11 @@
_start:
li a7, 1
- la a0, bar
+ la a0, buzz
ecall
.Loop:
j .Loop
.section .rodata
-bar:
- .string "bar\n"
+buzz:
+ .string "buzz\n"
diff --git a/usr/src/foo.S b/usr/src/fizz.S
index c26b550..a6e8de2 100644
--- a/usr/src/foo.S
+++ b/usr/src/fizz.S
@@ -3,11 +3,11 @@
_start:
li a7, 1
- la a0, foo
+ la a0, fizz
ecall
.Loop:
j .Loop
.section .rodata
-foo:
- .string "foo\n"
+fizz:
+ .string "fizz\n"
diff --git a/usr/src/foobar.S b/usr/src/fizzbuzz.S
index e3fecb8..6974fbd 100644
--- a/usr/src/foobar.S
+++ b/usr/src/fizzbuzz.S
@@ -3,11 +3,11 @@
_start:
li a7, 1
- la a0, foobar
+ la a0, fizzbuzz
ecall
.Loop:
j .Loop
.section .rodata
-foobar:
- .string "foobar\n"
+fizzbuzz:
+ .string "fizzbuzz\n"