INES Mapper 040: Difference between revisions

From NESdev Wiki
Jump to navigationJump to search
mNo edit summary
(found the hardware, provide a link to krzysiobal's reverse-engineered schematic)
Line 21: Line 21:


Like mapper 50, this hardware produces an interrupt 4096 M2 cycles after the IRQ is enabled.
Like mapper 50, this hardware produces an interrupt 4096 M2 cycles after the IRQ is enabled.
Both FCEUX and Nestopia's source disable the interrupt when it fires.


It seems most likely the corresponding hardware is a CD4020, functioning as a 13-bit counter, and that if the software didn't acknowledge the interrupt for another 4096 cycles it would self-acknowledge.
The corresponding hardware is a [url=https://forums.nesdev.org/viewtopic.php?p=217200#p217200]CD4020 functioning as a 13-bit counter[/url], and if the software doesn't acknowledge the interrupt for another 4096 cycles it will self-acknowledge.


== See also ==
== See also ==
* [http://nesdev.org/40.txt SMB2j aka "The Lost Levels" Mapper #40 Info] by The Mad Dumper.
* [http://nesdev.org/40.txt SMB2j aka "The Lost Levels" Mapper #40 Info] by The Mad Dumper.

Revision as of 21:58, 21 April 2018

iNES Mapper 040 describes yet another pirate port of SMB2j from the FDS to a cartridge. It is very similar to mapper 50.

This description was produced from the source code of FCEUX and Nestopia.

 Registers:
 ---------------------------
 Range,Mask:   $8000-FFFF, $E000

   $8000:  Disable and acknowledge IRQ
   $A000:  Enable IRQ
   $E000:  8 KiB bank mapped at $C000
 
 PRG Setup:
 ---------------------------
 
       $6000   $8000   $A000   $C000   $E000  
     +-------+-------+-------+-------+-------+
     | { 6 } | { 4 } | { 5 } | $E000 | { 7 } |
     +-------+-------+-------+-------+-------+

Like mapper 50, this hardware produces an interrupt 4096 M2 cycles after the IRQ is enabled.

The corresponding hardware is a [url=https://forums.nesdev.org/viewtopic.php?p=217200#p217200]CD4020 functioning as a 13-bit counter[/url], and if the software doesn't acknowledge the interrupt for another 4096 cycles it will self-acknowledge.

See also