Integrate all the progress into master #6

Merged
jaby merged 595 commits from ToolBox into main 2025-01-01 13:17:44 +00:00
1 changed files with 0 additions and 1 deletions
Showing only changes of commit d45e61b462 - Show all commits

View File

@ -9,7 +9,6 @@ namespace JabyEngine {
static void clear_bss() {
uint32_t* bss_adr = &__bss_start;
while(bss_adr < &__bss_end) {
printf("Free: 0x%p\n", bss_adr);
*bss_adr = 0;
bss_adr++;
}