mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-27 15:04:31 +00:00
Some checks failed
Build OS / Deploy Documentation to GitHub Pages (push) Failing after 5m35s
Build OS / Analyze (${{ matrix.language }}) (manual, c-cpp) (push) Has been cancelled
Build OS / Build Cross-Compiler & Toolchain (push) Has been cancelled
Build OS / Build amd64 (push) Has been cancelled
Build OS / Build i386 (push) Has been cancelled
Build OS / Build aarch64 (push) Has been cancelled
Build OS / Build arm (push) Has been cancelled
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
19 lines
226 B
ArmAsm
19 lines
226 B
ArmAsm
/* Based on this tutorial:
|
|
https://github.com/s-matyukevich/raspberry-pi-os */
|
|
|
|
.section ".text.boot", "a"
|
|
|
|
.extern _bss_start
|
|
.extern _bss_end
|
|
|
|
.global _start
|
|
_start:
|
|
b CPU_Loop
|
|
|
|
Halt:
|
|
wfe
|
|
b Halt
|
|
|
|
CPU_Loop:
|
|
b CPU_Loop
|