12 lines
307 B
INI
12 lines
307 B
INI
MEMORY {
|
|
ZP: start = $02, size = $1A, type = rw;
|
|
RAM: start = $0fff, size = $7001, file = %O;
|
|
}
|
|
SEGMENTS {
|
|
CODE: load = RAM, type = wprot;
|
|
RODATA: load = RAM, type = wprot;
|
|
DATA: load = RAM, type = rw;
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
}
|