1
0
mirror of https://github.com/mre/mos6502.git synced 2024-06-16 20:29:28 +00:00
mre-mos6502/examples/asm/linker.cfg
Matthias Endler e88c971625
Add assembly example code (#80)
* Add assembly example code

This should make it easier for beginners to understand
how to test this emulator.

* cleanup

* fix typo
2023-06-20 10:32:28 +02:00

12 lines
319 B
INI

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;
}