MEMORY { WRAM: start = 0, size = $2000; ROM: start = $8000, size = $8000; } SEGMENTS { code: load = ROM, type = ro; rodata: load = ROM, type = ro; data: load = ROM, run = WRAM, type = rw, define = yes; bss: load = WRAM, type = bss, define = yes; carthdr: load = ROM, start = $ffc0, type = ro; }