]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/c128.cfg
Added o65 symbol export capability
[cc65] / src / ld65 / cfg / c128.cfg
1 MEMORY {
2     ZP: start = $02, size = $1A, type = rw;
3     RAM: start = $1bff, size = $a401, define = yes, file = %O;
4 }
5 SEGMENTS {
6     STARTUP: load = RAM, type = wprot;
7     NMI: load = RAM, type = wprot;
8     CODE: load = RAM, type = wprot;
9     RODATA: load = RAM, type = wprot;
10     DATA: load = RAM, type = rw;
11     BSS: load = RAM, type = bss, define = yes;
12     ZEROPAGE: load = ZP, type = zp;
13 }
14 FEATURES {
15     CONDES: segment = RODATA,
16             type = constructor,
17             label = __CONSTRUCTOR_TABLE__,
18             count = __CONSTRUCTOR_COUNT__;
19     CONDES: segment = RODATA,
20             type = destructor,
21             label = __DESTRUCTOR_TABLE__,
22             count = __DESTRUCTOR_COUNT__;
23     CONDES: segment = RODATA,
24             type = 2,
25             label = __IRQFUNC_TABLE__,
26             count = __IRQFUNC_COUNT__;
27 }
28 SYMBOLS {
29     __STACKSIZE__ = $800;       # 2K stack
30 }