1
0
mirror of https://github.com/sethm/symon.git synced 2024-10-01 01:56:02 +00:00
symon/samples/ehbasic_crtc/symon.config
2014-08-14 11:50:51 -07:00

19 lines
387 B
Plaintext

MEMORY {
RAM1: start = $0000, size = $8000;
ROM1: start = $C000, size = $3C00, fill = yes;
MONITOR: start = $FC00, size = $3FA, fill = yes;
ROMV: start = $FFFA, size = $6, file = %O, fill = yes;
}
SEGMENTS {
CODE: load = ROM1, type = ro;
DATA: load = ROM1, type = ro;
MONITOR: load = MONITOR, type = ro;
VECTORS: load = ROMV, type = ro;
}
SYMBOLS {
__STACKSIZE__ = $0300;
}