Skip to content

Commit

Permalink
usr: Rename foo/bar to fizz/buzz
Browse files Browse the repository at this point in the history
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à <[email protected]>
  • Loading branch information
mssola committed Nov 22, 2024
1 parent dcda573 commit 2a1fdf6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions usr/src/bar.S → usr/src/buzz.S
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions usr/src/foo.S → usr/src/fizz.S
Original file line number Diff line number Diff line change
Expand Up @@ -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"
6 changes: 3 additions & 3 deletions usr/src/foobar.S → usr/src/fizzbuzz.S
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 2a1fdf6

Please sign in to comment.