Skip to content

Commit

Permalink
Remove redundant instruction in reset_vector
Browse files Browse the repository at this point in the history
Removed a redundant `li x10, 0` instruction in the reset_vector
section of crt0.S. This cleanup improves code clarity without altering
the functionality.
  • Loading branch information
404allen404 authored and mp-17 committed Sep 6, 2024
1 parent 86e7dbe commit c5e7d17
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion apps/common/crt0.S
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ reset_vector:
li x18, 0
li x19, 0
li x20, 0
li x10, 0
li x21, 0
li x22, 0
li x23, 0
Expand Down

0 comments on commit c5e7d17

Please sign in to comment.