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-12-04 21:18:42 -08:00

19 lines
424 B
Plaintext

FEATURES {
STARTADDRESS: default = $200000;
}
MEMORY {
ROM: start = $200000, size = $10000, fillval=$FF, file = %O;
ZP: start = $0000, size = $100;
}
SEGMENTS {
FStartup: load=ROM, type=ro, fillval=$00;
FSystem: load=ROM, type=ro, fillval=$00;
FCode: load=ROM, type=ro, fillval=$00, optional=yes;
ROMBOOT: load=ROM, type=ro, offset=$FF00;
VECTORS: load=ROM, type=ro, offset=$FFE0;
ZEROPAGE: load=ZP, type=bss;
}