correct INIT segment semantic is bss, make this consistent across all default cfg

This commit is contained in:
bbbradsmith
2023-08-19 13:08:46 -04:00
parent 148be69f97
commit 2431fb7d85
23 changed files with 22 additions and 28 deletions

View File

@@ -23,7 +23,7 @@ SEGMENTS {
CODE: load = MAIN, type = ro;
RODATA: load = MAIN, type = ro;
DATA: load = MAIN, type = rw;
INIT: load = MAIN, type = rw;
INIT: load = MAIN, type = bss;
ONCE: load = MAIN, type = ro, define = yes;
BSS: load = BSS, type = bss, define = yes;
}