You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
780B

  1. MEMORY {
  2. ZP: start = $0030, size = $00D0, type = rw, define = yes;
  3. LOADADDR: start = $07FF, size = $0002, type = rw, file = %O;
  4. RAM: start = $0801, size = $17FF, type = rw, file = %O;
  5. OCCUPY: start = $2000, size = $0040, type = rw, define = yes;
  6. BSSRAM: start = $2040, size = $0200, type = rw, define = yes;
  7. }
  8. SEGMENTS {
  9. ZEROPAGE: load = ZP, type = zp;
  10. LOADADDR: load = LOADADDR, type = ro;
  11. EXEHDR: load = RAM, type = ro;
  12. CODE: load = RAM, type = ro;
  13. RODATA: load = RAM, type = ro;
  14. DATA: load = RAM, type = rw;
  15. SPRITES: load = RAM, type = ro, align = $40;
  16. OCCUPANCY: load = OCCUPY, type = bss, define = yes;
  17. BSS: load = BSSRAM, type = bss, define = yes;
  18. }

Powered by TurnKey Linux.