fixed comment
[snes_test1] / snes.ld
1 MEMORY {
2         WRAM: start = 0, size = $2000;
3         ROM: start = $8000, size = $8000;
4 }
5
6 SEGMENTS {
7         code: load = ROM, type = ro;
8         rodata: load = ROM, type = ro;
9         data: load = ROM, run = WRAM, type = rw, define = yes;
10         bss: load = WRAM, type = bss, define = yes;
11         carthdr: load = ROM, start = $ffc0, type = ro;
12 }