User:Zzo38/Mapper G: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(Created page with "Category:GNROM-like mappers This is a generic GNROM-like mapper. The NES 2.0 header is required for its use. There must be at most one of CHR-ROM, CHR-non-battery-RA...")
 
No edit summary
Line 10: Line 10:


The low three bits of a submapper number tells how much it is shifted by, from zero to seven. It is possible to overlap. If it overflows on the left then it wraps around.
The low three bits of a submapper number tells how much it is shifted by, from zero to seven. It is possible to overlap. If it overflows on the left then it wraps around.
If PRG or CHR has no bankswitching but is shifted anyways, then that bit position instead sets nametable mirroring mode: If horizontal mirroring is specified in header then it selects CIRAM A10 directly; if vertical mirroring is specified in the header then it specifies if connected to PPU A10 (if clear) or PPU A11 (if set).
It is not allowed to shift unbankswitched registers if both four-screen mirroring and CHR ROM/RAM exists, since it would not do anything in such a case.


Submapper 0 is reserved and should not be used.
Submapper 0 is reserved and should not be used.
Line 18: Line 22:
* [[iNES Mapper 107]] = 9
* [[iNES Mapper 107]] = 9
* [[BNROM]] = 8
* [[BNROM]] = 8
* [[AxROM]] = 4

Revision as of 02:07, 20 January 2014


This is a generic GNROM-like mapper. The NES 2.0 header is required for its use.

There must be at most one of CHR-ROM, CHR-non-battery-RAM, CHR-battery-RAM. There also must be at most one of PRG-non-battery-RAM and PRG-battery-RAM. If no CHR ROM/RAM is present, then CIRAM is used, similar to iNES Mapper 218, but without the one-screen modes.

PRG RAM can be mapped at $6000-$7FFF if it exists. If there is more than 8K, the CHR bank numbers are used to select PRG RAM banks (in addition to CHR banks, if applicable; it doesn't matter if one is more than the other or less or equal).

The high bit of the submapper number (bit3) is used to designate whether PRG or CHR is shifted (PRG if set, CHR if cleared); the other is starting the low bit on the right side.

The low three bits of a submapper number tells how much it is shifted by, from zero to seven. It is possible to overlap. If it overflows on the left then it wraps around.

If PRG or CHR has no bankswitching but is shifted anyways, then that bit position instead sets nametable mirroring mode: If horizontal mirroring is specified in header then it selects CIRAM A10 directly; if vertical mirroring is specified in the header then it specifies if connected to PPU A10 (if clear) or PPU A11 (if set).

It is not allowed to shift unbankswitched registers if both four-screen mirroring and CHR ROM/RAM exists, since it would not do anything in such a case.

Submapper 0 is reserved and should not be used.

Example: