1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-02 20:41:33 +00:00
mre-mos6502/examples/asm/linker.cfg

12 lines
319 B
INI
Raw Normal View History

MEMORY {
ZP: start = $0000, size = $0100, type = rw, define = yes;
RAM: start = $0100, size = $0200, type = rw, define = yes;
ROM: start = $8000, size = $8000, type = ro;
}
SEGMENTS {
ZEROPAGE: load = ZP, type = zp;
DATA: load = RAM, type = rw;
CODE: load = ROM, type = ro;
}