1
0
mirror of https://github.com/cc65/cc65.git synced 2024-07-09 01:28:58 +00:00

Merge pull request #298 from groessler/something_to_pull2

make BSS segment optional in atari-cassette.cfg
This commit is contained in:
Oliver Schmidt 2016-05-25 10:31:41 +02:00
commit 55b4b00449

View File

@ -21,7 +21,7 @@ SEGMENTS {
CODE: load = MAIN, type = ro, define = yes;
RODATA: load = MAIN, type = ro, 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;
}
FEATURES {