mirror of
https://github.com/smartykit/apple1.git
synced 2025-01-15 02:29:59 +00:00
4f19769784
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.
19 lines
497 B
INI
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;
|
|
} |