fixed memory allocation in linker script but still have a panic error :(

This commit is contained in:
2025-07-31 13:05:09 +03:00
parent cfffd14b4b
commit b65dc62257
2 changed files with 6 additions and 7 deletions

View File

@@ -29,6 +29,6 @@ SECTIONS {
. = ALIGN(4096);
__free_ram = .;
. += 64 * 1024 * 1048; /* 64MB */
. += 64 * 1024 * 1024; /* 64MB */
__free_ram_end = .;
}