MEMORY { ZP: start = $00FC, size = $0004, type = rw, file = ""; RAM: start = $0600, size = $0100, type = rw, file = ""; OAM: start = $0700, size = $0100, type = rw, file = ""; HDR: start = $0000, size = $0010, type = ro, file = "", fill = yes, fillval = $00; PRG: start = $F000, size = $1000, type = ro, file = "", fill = yes, fillval = $00; NSF: start = $F000, size = $1000, type = ro, file = %O, fill = yes, fillval = $00; } SEGMENTS { ZEROPAGE: load = ZP, type = zp, define = yes; BSS: load = RAM, type = bss; OAM: load = OAM, type = bss, align = 256; HEADER: load = HDR, type = ro; CODE: load = PRG, type = ro; RAMCODE: load = PRG, run = RAM, type = ro, define = yes; ALIGN: load = PRG, type = ro, align = 32, optional = yes; VECTORS: load = PRG, type = ro, start = $FFFA; NSF_F000: load = NSF, type = ro, start = $F000; NSF_VECTORS: load = NSF, type = ro, START = $FFFA; }