Programming NROM: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(Created page with 'NROM is the simplest mapper. All address decoding and chip enable handling are handled by the NES hardware; the only parts on the board are the PRG ROM, CHR ROM, and (in 72-p…')
 
("parts" sounds dirty)
Line 1: Line 1:
[[NROM]] is the simplest mapper.
[[NROM]] and the other boards that make up [[iNES Mapper 000]] are the simplest of all NES cartridge boards.
All address decoding and chip enable handling are handled by the NES hardware; the only parts on the board are the PRG ROM, CHR ROM, and (in 72-pin carts) CIC.
All address decoding and chip enable handling are handled by the NES hardware; the only integrated circuits on the board are the PRG ROM, CHR ROM, and (in 72-pin carts) CIC.


NROM has two configurations:
NROM has two configurations:

Revision as of 22:04, 24 March 2010

NROM and the other boards that make up iNES Mapper 000 are the simplest of all NES cartridge boards. All address decoding and chip enable handling are handled by the NES hardware; the only integrated circuits on the board are the PRG ROM, CHR ROM, and (in 72-pin carts) CIC.

NROM has two configurations:

  • NROM-256 with 32 KiB PRG ROM and 8 KiB CHR ROM
  • NROM-128 with 16 KiB PRG ROM and 8 KiB CHR ROM

Your program is mapped into $8000-$FFFF (NROM-256) or both $8000-$BFFF and $C000-$FFFF (NROM-128). Most NROM-128 games actually run in $C000-$FFFF rather than $8000-$BFFF because it makes the program easier to assemble and link. Some kinds of data used by the NES CPU, such as the vectors and sampled sound, have to be in $C000-$FFFF, and it simplifies the linker script if everything is in the same memory region. There are probably a few games that rely on the mirroring, but experiments with a multicart engine show that most can run with garbage in $8000-$BFFF.