1
0
mirror of https://github.com/cc65/cc65.git synced 2025-08-16 12:27:49 +00:00

make BSS segment optional in atari-cassette.cfg

This commit is contained in:
Christian Groessler
2016-05-25 01:29:00 +02:00
parent a76153cb9f
commit e2d14291b7

View File

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