mirror of
https://github.com/mgcaret/of816.git
synced 2024-11-01 01:07:10 +00:00
16 lines
284 B
Plaintext
16 lines
284 B
Plaintext
FEATURES {
|
|
STARTADDRESS: default = $200000;
|
|
}
|
|
|
|
MEMORY {
|
|
ROM: start = $200000, size = $10000, file = %O;
|
|
ZP: start = $0000, size = $100;
|
|
}
|
|
|
|
SEGMENTS {
|
|
FStartup: load=ROM,type=ro;
|
|
FSystem: load=ROM, type=ro;
|
|
FCode: load=ROM, type=ro, optional=yes;
|
|
ZEROPAGE: load=ZP, type=bss;
|
|
}
|