Fix bss init

This commit is contained in:
Jaby Blubb 2023-08-28 16:48:26 +02:00
parent 79fdc3a26c
commit d45e61b462
1 changed files with 0 additions and 1 deletions

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++;
}