apple1/ROM development/apple1.cfg
Sergei Panarin 4f19769784 SmartyKit 1 ROM asm source & make file
SmartyKit 1 ROM assembler (asm) source and make file for cc65.

Easy-to-use development tool to write your own software for SmartyKLit 1 (you need just run make in your Terminal) and learn how ROM is organized.
2021-01-21 00:25:02 +03:00

20 lines
602 B
INI

MEMORY
{
RAM: start=$0000, size=$8000, type=rw, define=yes, fill=yes;
ROM: start=$8000, size=$8000, type=ro, define=yes, fill=yes, file=%O;
}
SEGMENTS
{
PICTURE: load=RAM, type=rw, offset=$0088;
CODE: load=ROM, type=ro;
C000: load=ROM, type=ro, offset=$4000;
E000: load=ROM, type=ro, offset=$6000;
F000: load=ROM, type=ro, offset=$7000;
F800: load=ROM, type=ro, offset=$7800;
FA00: load=ROM, type=ro, offset=$7a00;
FC00: load=ROM, type=ro, offset=$7c00;
FD00: load=ROM, type=ro, offset=$7d00;
FF00: load=ROM, type=ro, offset=$7f00;
VECTORS: load=ROM, type=ro, offset=$7ffa;
}