1
0
mirror of https://github.com/mgcaret/of816.git synced 2024-06-02 02:41:33 +00:00
of816/platforms/Neon816/Neon816.l

19 lines
424 B
Plaintext
Raw Normal View History

2019-11-21 02:22:11 +00:00
FEATURES {
2019-12-05 05:18:42 +00:00
STARTADDRESS: default = $200000;
2019-11-21 02:22:11 +00:00
}
MEMORY {
2019-12-05 05:18:42 +00:00
ROM: start = $200000, size = $10000, fillval=$FF, file = %O;
2019-11-21 02:22:11 +00:00
ZP: start = $0000, size = $100;
}
SEGMENTS {
2019-12-05 05:18:42 +00:00
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;
2019-11-21 02:22:11 +00:00
ZEROPAGE: load=ZP, type=bss;
}