diff options
author | Brian Cully <bjc@kublai.com> | 2022-08-03 19:05:54 -0400 |
---|---|---|
committer | Brian Cully <bjc@kublai.com> | 2022-08-03 19:05:54 -0400 |
commit | d04d8f629ccd1d80b1dae4f3588b397dcebd1bd4 (patch) | |
tree | 918b537b77af457c6d808ec7c2e1f6e0189d38dc /src/boot.S | |
parent | 5062ac0818f07bfe07714039c46018172a79ee76 (diff) | |
download | luchie-d04d8f629ccd1d80b1dae4f3588b397dcebd1bd4.tar.gz luchie-d04d8f629ccd1d80b1dae4f3588b397dcebd1bd4.zip |
Get rid of nightly features by using ‘global_asm’.
Now compiles and runs on stable.
Diffstat (limited to 'src/boot.S')
-rw-r--r-- | src/boot.S | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/boot.S b/src/boot.S new file mode 100644 index 0000000..d31e5fe --- /dev/null +++ b/src/boot.S @@ -0,0 +1,11 @@ + .global _start + .section .text.init +_start: + .option push + .option norelax + la gp, __global_pointer$ + .option pop + la sp, _stack_top + + csrr a0, mhartid + tail main |