undo change of INIT to bss for configurations that were also using rw to reserve space, add a comment documenting the reason

This commit is contained in:
bbbradsmith
2023-09-05 00:24:18 -04:00
parent 7eaa5c507f
commit d4c4786ff0
14 changed files with 14 additions and 14 deletions

View File

@@ -26,7 +26,7 @@ SEGMENTS {
CODE: load = MAIN, type = ro;
RODATA: load = MAIN, type = ro;
DATA: load = MAIN, type = rw;
INIT: load = MAIN, type = bss;
INIT: load = MAIN, type = rw; # uninitialized, but reserves output space
ONCE: load = MAIN, type = ro, define = yes;
LC: load = MAIN, run = LC, type = ro, optional = yes;
BSS: load = BSS, type = bss, define = yes;