]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/supervision.cfg
a3eac00374f6f2a4e611a5da93c3b162772b0ebe
[cc65] / src / ld65 / cfg / supervision.cfg
1 # if you want to combine the 2 16 kbyte roms
2 # make sure the halves are mirrored in the 64kbyte cartridge image
3 # or reset from code >0xc000 and switch bank to the 3rd bank
4
5 MEMORY {
6     ZP:       file = "", start = $0000, size = $0100;
7     CPUSTACK: file = "", start = $0100, size = $0100;
8     RAM:      file = "", start = $0200, size = $1E00, define = yes;
9     VRAM:     file = "", start = $4000, size = $2000;
10     ROM:      file = %O, start = $8000, size = $8000, fill = yes, fillval = $FF, define = yes;
11 }
12 SEGMENTS {
13     LOWCODE:  load = ROM,            type = ro,                optional = yes;
14     INIT:     load = ROM,            type = ro,  define = yes, optional = yes;
15     CODE:     load = ROM,            type = ro,  define = yes;
16     RODATA:   load = ROM,            type = ro,  define = yes;
17     DATA:     load = ROM, run = RAM, type = rw,  define = yes;
18     FFF0:     load = ROM,            type = ro,  offset = $7FF0;
19     VECTOR:   load = ROM,            type = ro,  offset = $7FFA;
20     BSS:      load = RAM,            type = bss, define = yes;
21     ZEROPAGE: load = ZP,             type = zp,  define = yes;
22 }
23 FEATURES {
24     CONDES: segment = INIT,
25             type    = constructor,
26             label   = __CONSTRUCTOR_TABLE__,
27             count   = __CONSTRUCTOR_COUNT__;
28     CONDES: segment = RODATA,
29             type    = destructor,
30             label   = __DESTRUCTOR_TABLE__,
31             count   = __DESTRUCTOR_COUNT__;
32     CONDES: segment = RODATA,
33             type    = interruptor,
34             label   = __INTERRUPTOR_TABLE__,
35             count   = __INTERRUPTOR_COUNT__,
36             import  = __CALLIRQ__;
37 }