INES Mapper 215: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
m (MMC3-alike sort, grammar)
No edit summary
Line 1: Line 1:
[[Category:INES Mappers|215]][[Category:MMC3-like mappers|215]]
[[Category:INES Mappers|215]][[Category:MMC3-like mappers|215]]
[[INES Mapper 215]], one of the mappers used for Super Game's games (e.g. Boogerman (Sugar Softec), Mortal Kombat 3 Extra 60, etc).  
[[iNES Mapper 215]] is one of the MMC3 variants mapper, which is mainly used in the ''Super Game'' of pirate games.


$8000-$9FFF: PRG regs
Source codes from Nestopia:
* [https://github.com/rdanbrook/nestopia/blob/master/source/core/board/NstBoardSuperGameBoogerman.cpp Nestopia implementation (Boogerman)]
$A000-$BFFF: CHR regs
* [https://github.com/rdanbrook/nestopia/blob/master/source/core/board/NstBoardSuperGameLionKing.cpp Nestopia implementation (The Lion King)]
* [https://github.com/rdanbrook/nestopia/blob/master/source/core/board/NstBoardSuperGamePocahontas2.cpp Nestopia implementation (Pocahontas 2)]
$C000-$DFFF: Mirroring reg
              %00 = Vert, %01 = Horz
$E000-%FFFF: IRQs
 
Some of the registers are similar to MMC3.

Revision as of 22:32, 27 September 2016

iNES Mapper 215 is one of the MMC3 variants mapper, which is mainly used in the Super Game of pirate games.

Source codes from Nestopia: