Skip to content

Commit

Permalink
n64.ld: move __text_start to include the entrypoint (for backtraces)
Browse files Browse the repository at this point in the history
  • Loading branch information
rasky committed Oct 7, 2024
1 parent dc8914a commit ec5b3f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion n64.ld
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ SECTIONS {
* the first byte of the cart domain in cached, unmapped memory
*/
.text 0x80000400 : {
__text_start = .;
*(.boot)
. = ALIGN(16);
__text_start = .;
*(.text)
*(.text.*)
*(.init)
Expand Down

0 comments on commit ec5b3f2

Please sign in to comment.