mirror of
https://github.com/sethm/symon.git
synced 2024-11-18 23:10:05 +00:00
17 lines
301 B
Plaintext
17 lines
301 B
Plaintext
MEMORY {
|
|
RAM1: start = $0000, size = $8000;
|
|
ROM1: start = $C000, size = $3FFA, fill = yes;
|
|
ROMV: start = $FFFA, size = $6, file = %O, fill = yes;
|
|
}
|
|
|
|
SEGMENTS {
|
|
CODE: load = ROM1, type = ro;
|
|
DATA: load = ROM1, type = ro;
|
|
VECTORS: load = ROMV, type = ro;
|
|
}
|
|
|
|
SYMBOLS {
|
|
__STACKSIZE__ = $0300;
|
|
}
|
|
|