mirror of
https://github.com/cc65/cc65.git
synced 2024-10-31 20:06:11 +00:00
09495519c0
The configuration file and runtime (crt0.s) provided for the default NES ROM layout (2x16k PRG, 8k CHR) incorrectly added interrupts (IRQ1, IRQ2, TIMERIRQ) which are not supported by the NES hardware. For example, see the NESdev wiki, which makes no reference to these interrupts. https://wiki.nesdev.com/w/index.php/CPU_memory_map The VECTORS region was also incorrectly set to 0xFFF6, which would have left the 0xFFF4 normally unspecified. This did not result in any error, however, since cc65 simply placed ROMV directly after ROM0 regardless of start address. (This layout may be due to a copy-and-paste from the PC-Engine configuration, whose interrupt registers start at 0xFFF6, begins with the three interrupts listed above, followed by NMI and START, and does not end with a final IRQ interrupt.) Despite the absence of any actual error, since START is still placed at 0xFFFC, this patch removes the nonexistent interrupts and also correctly aligns the ROM0 and ROMV regions. It also has the (admittedly very minor) benefit of freeing up 6 additional bytes for ROM0.
63 lines
2.1 KiB
INI
63 lines
2.1 KiB
INI
SYMBOLS {
|
|
__STACKSIZE__: type = weak, value = $0300; # 3 pages stack
|
|
}
|
|
MEMORY {
|
|
ZP: file = "", start = $0002, size = $001A, type = rw, define = yes;
|
|
|
|
# INES Cartridge Header
|
|
HEADER: file = %O, start = $0000, size = $0010, fill = yes;
|
|
|
|
# 2 16K ROM Banks
|
|
# - startup
|
|
# - code
|
|
# - rodata
|
|
# - data (load)
|
|
ROM0: file = %O, start = $8000, size = $7FFA, fill = yes, define = yes;
|
|
|
|
# Hardware Vectors at End of 2nd 8K ROM
|
|
ROMV: file = %O, start = $FFFA, size = $0006, fill = yes;
|
|
|
|
# 1 8k CHR Bank
|
|
ROM2: file = %O, start = $0000, size = $2000, fill = yes;
|
|
|
|
# standard 2k SRAM (-zeropage)
|
|
# $0100-$0200 cpu stack
|
|
# $0200-$0500 3 pages for ppu memory write buffer
|
|
# $0500-$0800 3 pages for cc65 parameter stack
|
|
SRAM: file = "", start = $0500, size = __STACKSIZE__, define = yes;
|
|
|
|
# additional 8K SRAM Bank
|
|
# - data (run)
|
|
# - bss
|
|
# - heap
|
|
RAM: file = "", start = $6000, size = $2000, define = yes;
|
|
}
|
|
SEGMENTS {
|
|
ZEROPAGE: load = ZP, type = zp;
|
|
HEADER: load = HEADER, type = ro;
|
|
STARTUP: load = ROM0, type = ro, define = yes;
|
|
LOWCODE: load = ROM0, type = ro, optional = yes;
|
|
ONCE: load = ROM0, type = ro, optional = yes;
|
|
CODE: load = ROM0, type = ro, define = yes;
|
|
RODATA: load = ROM0, type = ro, define = yes;
|
|
DATA: load = ROM0, run = RAM, type = rw, define = yes;
|
|
VECTORS: load = ROMV, type = rw;
|
|
CHARS: load = ROM2, type = rw;
|
|
BSS: load = RAM, type = bss, define = yes;
|
|
}
|
|
FEATURES {
|
|
CONDES: type = constructor,
|
|
label = __CONSTRUCTOR_TABLE__,
|
|
count = __CONSTRUCTOR_COUNT__,
|
|
segment = ONCE;
|
|
CONDES: type = destructor,
|
|
label = __DESTRUCTOR_TABLE__,
|
|
count = __DESTRUCTOR_COUNT__,
|
|
segment = RODATA;
|
|
CONDES: type = interruptor,
|
|
label = __INTERRUPTOR_TABLE__,
|
|
count = __INTERRUPTOR_COUNT__,
|
|
segment = RODATA,
|
|
import = __CALLIRQ__;
|
|
}
|