mirror of
https://github.com/cc65/cc65.git
synced 2024-11-06 15:06:07 +00:00
0a7981840b
git-svn-id: svn://svn.cc65.org/cc65/trunk@5416 b7a2c559-68d2-44c3-8de9-860c34a00d81
18 lines
828 B
INI
18 lines
828 B
INI
#################################################################################
|
|
# #
|
|
# LOADER.SYSTEM - an Apple][ ProDOS 8 loader for cc65 programs (Oliver Schmidt) #
|
|
# #
|
|
#################################################################################
|
|
|
|
MEMORY {
|
|
MEMORY_2000: start = $2000, size = $0200, file = %O;
|
|
MEMORY_0300: start = $0300, size = $0100;
|
|
}
|
|
|
|
SEGMENTS {
|
|
CODE_2000: load = MEMORY_2000, type = ro;
|
|
DATA_2000: load = MEMORY_2000, type = rw;
|
|
CODE_0300: load = MEMORY_2000, run = MEMORY_0300, type = ro, define = yes;
|
|
DATA_0300: load = MEMORY_2000, run = MEMORY_0300, type = rw, define = yes;
|
|
}
|