1
0
mirror of https://github.com/mgcaret/of816.git synced 2024-05-28 14:41:27 +00:00
of816/platforms/Neon816/Neon816.l
2019-11-30 21:08:15 -08:00

17 lines
281 B
Plaintext

FEATURES {
STARTADDRESS: default = $0000;
}
MEMORY {
ROM: start = $0000, 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;
}