Add sources

This commit is contained in:
Nikolay Puzanov
2023-06-11 16:15:40 +03:00
parent 82f90610fb
commit 686d12bf81
48 changed files with 23261 additions and 0 deletions

7
source/firmware/crt0.s Normal file
View File

@@ -0,0 +1,7 @@
.section .init, "ax"
.global _start
_start:
la sp, __stack_top
add s0, sp, zero
jal zero, main
.end