]> git.sur5r.net Git - cc65/blob - src/ld65/cfg/plus4.cfg
Moved the target configurations into separate files
[cc65] / src / ld65 / cfg / plus4.cfg
1 MEMORY {
2     ZP: start = $02, size = $1A, type = rw;
3     RAM: start = $0fff, size = $7001, file = %O;
4 }
5 SEGMENTS {
6     CODE: load = RAM, type = wprot;
7     RODATA: load = RAM, type = wprot;
8     DATA: load = RAM, type = rw;
9     BSS: load = RAM, type = bss, define = yes;
10     ZEROPAGE: load = ZP, type = zp;
11 }