]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/none.cfg
Added command line response files
[cc65] / src / ld65 / cfg / none.cfg
1 MEMORY {
2     RAM: start = %S, size = $10000, file = %O;
3 }
4 SEGMENTS {
5     CODE: load = RAM, type = rw;
6     RODATA: load = RAM, type = rw;
7     DATA: load = RAM, type = rw;
8     BSS: load = RAM, type = bss, define = yes;
9 }
10 FEATURES {
11     CONDES: segment = RODATA,
12             type = constructor,
13             label = __CONSTRUCTOR_TABLE__,
14             count = __CONSTRUCTOR_COUNT__;
15     CONDES: segment = RODATA,
16             type = destructor,
17             label = __DESTRUCTOR_TABLE__,
18             count = __DESTRUCTOR_COUNT__;
19 }