Update bootstrap code

Was missing some things like initializing the stack pointer, clearing
BSS, and things like that
This commit is contained in:
Byron Lathi
2022-03-11 22:57:22 -06:00
parent 3d9d340520
commit 5106e50395
2 changed files with 58 additions and 14 deletions

View File

@@ -6,6 +6,6 @@ int main() {
uint16_t* seven_seg;
seven_seg = (uint16_t*)SEVEN_SEG;
*seven_seg = 0xa5a5;
*seven_seg = 0xbabe;
return 0;
}