INES Mapper 014: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(note about PRG RAM)
m (→‎MMC3 Mode Clear: formatting)
Line 41: Line 41:


When the MMC3 Mode bit is clear, PRG banking is controlled by a 2 alternative registers, and CHR banking is controlled by 8 alternative registers. These banking registers are independent of the banking registers used when MMC3 Mode is set.
When the MMC3 Mode bit is clear, PRG banking is controlled by a 2 alternative registers, and CHR banking is controlled by 8 alternative registers. These banking registers are independent of the banking registers used when MMC3 Mode is set.


* PRG bank 0 - 8k at $8000-9FFF
* PRG bank 0 - 8k at $8000-9FFF
* PRG bank 1 - 8k at $A000-BFFF
* PRG bank 1 - 8k at $A000-BFFF
* PRG fixed - 16k at $C000-FFFF (fixed to last bank)
* PRG fixed - 16k at $C000-FFFF (fixed to last bank)


* CHR bank 0 - 1k at $0000-03FF
* CHR bank 0 - 1k at $0000-03FF
Line 56: Line 54:
* CHR bank 6 - 1k at $1800-1BFF
* CHR bank 6 - 1k at $1800-1BFF
* CHR bank 7 - 1k at $1C00-1FFF
* CHR bank 7 - 1k at $1C00-1FFF


=== $8000-8FFC (0 of 4) ===
=== $8000-8FFC (0 of 4) ===

Revision as of 09:15, 4 October 2012


iNES Mapper 014 is an MMC3 variant mapper used in the pirate port of Samurai Spirits by Rex Game Soft. It is very similar to an MMC3, but contains an alternative mode that when used controls banking and mirroring independently of the normal MMC3 mode.

This mapper is not widely supported by emulators. The following notes are based on Nestopia's SOMERITEAM SL-1632 mapper implementation.

MMC3 Mode Control: $A131

7  bit  0
---------
A.B. C.M.
       |
       +- MMC3 mode (1: on, 0: off)
  • When M is set, writes to $8000-FFFF operate mostly as normal for MMC3.
  • When M is clear, alternative functions appear (see MMC3 Mode Clear below).
  • When M is written, the CHR and PRG banks must be switched either to their MMC3 banks (MMC3 Mode Set), or the alternative banks (MMC3 Mode Clear).

In MMC3 mode, bits 7, 5, and 3 of this register also control high bits of the CHR banks, allowing 512k of CHR ROM. This works in conjunction with the current 2k/1k CHR banking mode.

  • If A is set add $100 to both 2k CHR banks.
  • If B is set add $100 to lower two 1k CHR banks.
  • If C is set add $100 to upper two 1k CHR banks.

MMC3 Mode Set

Note that when the MMC3 Mode bit is set, this mapper operates mostly like the MMC3, except the $A000-BFFE even register does not control the nametable mirroing (it can only be controlled with the MMC3 mode clear). Additionally, a write to the specific address $A131 will alter the MMC3 Mode bit as above.

  • $8000-9FFE even - as MMC3
  • $8001-9FFF odd - as MMC3
  • $A000-BFFE even - ignored
  • $A001-BFFF odd - as MMC3
  • $C000-DFFE even - as MMC3
  • $C001-DFFF odd - as MMC3
  • $E000-FFFE even - as MMC3
  • $E001-FFFF odd - as MMC3

There may be a conflict between $A131 and the $A001-BFFF odd register if PRG RAM is present. The Nestopia implementation also writes to the corresponding MMC3 register when writing $A131 if the MMC3 Mode bit is set.

MMC3 Mode Clear

When the MMC3 Mode bit is clear, PRG banking is controlled by a 2 alternative registers, and CHR banking is controlled by 8 alternative registers. These banking registers are independent of the banking registers used when MMC3 Mode is set.

  • PRG bank 0 - 8k at $8000-9FFF
  • PRG bank 1 - 8k at $A000-BFFF
  • PRG fixed - 16k at $C000-FFFF (fixed to last bank)
  • CHR bank 0 - 1k at $0000-03FF
  • CHR bank 1 - 1k at $0400-07FF
  • CHR bank 2 - 1k at $0800-0BFF
  • CHR bank 3 - 1k at $0C00-0FFF
  • CHR bank 4 - 1k at $1000-13FF
  • CHR bank 5 - 1k at $1400-17FF
  • CHR bank 6 - 1k at $1800-1BFF
  • CHR bank 7 - 1k at $1C00-1FFF

$8000-8FFC (0 of 4)

  • Selects 8k PRG bank at $8000-9FFF
  • Only responds if address % $3 is 0

$9000-9FFC (0 of 4)

7  bit  0
---------
.... ...M
        |
        +- Mirroring (0: vertical; 1: horizontal)
  • Selects nametable mirroring. Note that mirroring cannot be set when this mapper is in MMC3 mode.
  • Only responds if address % $3 is 0

$A000-AFFC (0 of 4)

  • Selects 8k PRG bank at $A000-EFFF
  • Only responds if address % $3 is 0

$B000-E003

The address bits select one of 8 CHR bank registers in an unusual way:

15      bit       0
-------------------
.ABC D... .... ..EF

CHR bank register: = (%ABC - 3) | %D | %E

The write to $B000-E003 sets only 4 bits of the CHR bank, selected by the least significant bit of the address (F).

if (!F)
    register = (register & $F0) | (data & $0F)
else
    register = (register & $0F) | ((data << 4) & $F0)