mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-14 13:33:48 +00:00
85a296347d
also add self-driving code, as well as make it load into HGR range
13 lines
288 B
PHP
13 lines
288 B
PHP
MEMORY {
|
|
ZP: start = $00, size = $1A, type = rw;
|
|
RAM: start = $2000, size = $7E00, file = %O;
|
|
}
|
|
|
|
SEGMENTS {
|
|
CODE: load = RAM, type = ro;
|
|
RODATA: load = RAM, type = ro;
|
|
DATA: load = RAM, type = rw;
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
}
|