apple1/ROM development/symon.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

19 lines
497 B
INI

MEMORY
{
ROM: start=$E000, size=$2000, type=ro, define=yes, fill=yes, file=%O;
}
SEGMENTS
{
CODE: load=ROM, type=ro;
PICTURE: load=ROM, type=ro;
C000: load=ROM, type=ro;
E000: load=ROM, type=ro;
F000: load=ROM, type=ro, offset=$1000;
F800: load=ROM, type=ro, offset=$1800;
FA00: load=ROM, type=ro, offset=$1a00;
FC00: load=ROM, type=ro, offset=$1c00;
FD00: load=ROM, type=ro, offset=$1d00;
FF00: load=ROM, type=ro, offset=$1f00;
VECTORS: load=ROM, type=ro, offset=$1ffa;
}