linker_scripts: one was missing

This commit is contained in:
Vince Weaver 2021-01-06 00:28:15 -05:00
parent 00c3702126
commit c24366ca9f
1 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,12 @@
MEMORY {
ZP: start = $70, size = $80, type = rw;
RAM: start = $70, size = $8E00, 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 = ro;
}