INES Mapper 027: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
(And perhaps the other difference is in IRQs)
(9-bit bank numbers appear to match authentic VRC4, so describe the two possible differences between this and an authentic VRC4)
Line 7: Line 7:
This is supported by BizHawk as of r3975 and FCEUX for some time prior but definitely as of 26-nov-2012.
This is supported by BizHawk as of r3975 and FCEUX for some time prior but definitely as of 26-nov-2012.


Formerly FCEUX emulated this with unique code, but as of r2722 cah4e3 asserts that it is a dupe for [[INES Mapper 023]]. However, FCEUX's VRC2/4 emulation is filled with hacks for pirate and multicart games which are otherwise similar to VRC2/4.
Formerly FCEUX emulated this with unique code, but as of r2722 CaH4e3 asserts that it is a duplicate of [[INES Mapper 023]].
This means the only difference between 27 and the other VRC4 mappers (21, 23, and 25) is the way the board wires up the address lines.
However, FCEUX's VRC2/4 emulation is filled with hacks for pirate and multicart games which are otherwise similar to VRC2/4.


In particular, ''World Hero'' is a VRC4-compatible but depends on the 9-bit CHR banking described below, where the most significant nibble of the CHR banks are actually 5 bits instead.
In particular, ''World Hero'' depends on the VRC4's 9-bit CHR bank numbers, where the most significant nibble of the CHR banks are actually 5 bits.


The below notes are left until the author agrees they are describing VRC4, particularly whether the IRQ behavior matches [[VRC IRQ|that of VRC family]] or that of [[MMC3]].
The below notes are left until the author agrees they are describing VRC4:
* IRQ behavior: does it match [[VRC IRQ|that of VRC family]] or that of [[MMC3]]?
* $9002 behavior: is it 3x8+8F PRG banking or MMC3 style PRG banking?


<pre>
<pre>

Revision as of 21:44, 3 March 2013

iNES Mapper 027 is believed to be an oversize variant of the VRC4 mapper.

GoodNES thinks this is used for World Hero. We should discover whether this mapper number is used for any other unlicensed/pirate/multicart VRC2/4 games.

This is supported by BizHawk as of r3975 and FCEUX for some time prior but definitely as of 26-nov-2012.

Formerly FCEUX emulated this with unique code, but as of r2722 CaH4e3 asserts that it is a duplicate of INES Mapper 023. This means the only difference between 27 and the other VRC4 mappers (21, 23, and 25) is the way the board wires up the address lines. However, FCEUX's VRC2/4 emulation is filled with hacks for pirate and multicart games which are otherwise similar to VRC2/4.

In particular, World Hero depends on the VRC4's 9-bit CHR bank numbers, where the most significant nibble of the CHR banks are actually 5 bits.

The below notes are left until the author agrees they are describing VRC4:

  • IRQ behavior: does it match that of VRC family or that of MMC3?
  • $9002 behavior: is it 3x8+8F PRG banking or MMC3 style PRG banking?
Mask = F00F

Writes:
9002: ......x. = If bit 2 is set, next write to register 8000 affects PRG C000-BFFF instead of PRG 8000-AFFF
8000: xxxxxxxx = Switches 8k PRG bank 8000-9FFF (or C000-DFFF)
9000: ......xx = Select mirroring (0 = Vertical, 1 = Horizontal, 2 = Single screen 0, 3 = Single screen 1)
A000: xxxxxxxx = Switches 8K PRG bank A000-BFFF
B000-E003: CHR banks.  They appear to have 9 bits.  If address written to is even (least significant bit is zero), sets the low 4 bits of the value.
  If address is odd (least significant bit is one), sets the 5 high bits of the value.
  CHR Bank number affected = Top nibble of address - B, times 2, plus 1 if address & 2.
  (B000 = 4 low bits of bank 0, B001 = 5 high bits of bank 0, B002 = 4 low bits of bank 1, B003 = 5 high bits of bank 1, C000 = 4 low bits of bank 2, etc...)
  Selects the 1K CHR bank.
F000: 4 low bits of IRQ latch
F001: 4 high bits of IRQ latch
F002: ......ER = 2 bit IRQ register, bit E = enable, bit R = enable on next acknowledgement (retrigger), then sets value of IRQ counter to IRQ latch - 1.
F003: Writing here acknowledges the IRQ, and sets bit E (enable) to bit R (retrigger).

IRQ behavior:
IRQ counter is triggered by A12, just like MMC3, and happens once per scanline.
If enabled, IRQ counter counts up to FF.  If it would count up when the counter is at FF, it triggers an interrupt, then resets the IRQ counter to IRQ Latch + 1.
If disabled, IRQ does not count at all.

PRG E000-FFFF is probably fixed to the last bank.