logoUnique visits: 7959
Can you help getting more info about those carts?
Cart name
Notes for chip search:
  • Use "+" as delimeter for all fields (except "cart name", where space is used); if many values are entered, all of them must appear in the cartridge then; case is not sensitive
  • "Mapper" is the actual mapper used by this cartridge hardware (might not match the one at wiki.nesdev.com, as at the moment I was analyzing this cartridge, there was no mapper assigned to it, so I had to assign my own number for testing)
  • "Original mapper" is the mapper used by licensed version of this game (for multicarts, it refers to mapper of the inside games, so 0+2 means this cartridge can run NROM+UNROM games)
  • Order in which you put values doesn't matter (you can write 7400+74138+7400 or 7400+7400+74138 to search for a cartridge that contains at least two 7400 chips and one 74138
  • Some chips (like PAL16*8) appear in cartridges as 16V8 or 16L8, so be sure to check both posibilities
  • Same goes for memories - type 27F080 to search for 32 pin memories, 27512 for 28 pin with two chip enables or MASKROM_1M_DIP28 for 28 pin with one chip enable
  • Same goes for mappers - some examples: AX5904(MMC1), AX5202P(MMC3), PT8154BM (9112MMC3), AX5208C(VRC4), 23C3662(VRC2)
  • Good news is that you can use wildcards, so 74139+*MMC3* will search for any cartrige that has at least one 74139 and MMC3 chip in any version
Mapper#
Original mapper#
PCB marks
Tags
Chips
Super Soccer Champion
Typesingle
Mapper538
Original mapper
PCB marks60-1064-16L
Tags:
Uploaded:2021-05-26 07:10:58

Elements:
NameValue
IC127F080
IC26264
IC316L8
IC474174
CART1FAMICOM_CART
JP1JUMPER-CUT
JP2JUMPER-SHORT

Chip signature:
27F080+6264+16L8+74174

PCB top:

PCB bottom:

Shell top:


Shell bottom:

Screenshoots:

Extra info:
http://forums.nesdev.com/viewtopic.php?f=3&t=18723
https://wiki.nesdev.com/w/index.php/NES_2.0_Mapper_538


[code]
$C000-$DFFF: [....PPPP] (mask: $E000)
                  ||||
                  ++++- Bank value (unspecified on powerup)

 Bank | 0 1 2 3 4 5 6 7 8 9 a b c d e f
------+---------------------------------
$6000 | 1 1 3 3 5 5 7 7 9 9 b b d d f f
$8000 | 0 a 2 a 4 a 6 a 8 8 a a c c e e
$a000 | d d d d d d d d d d d d d d d d
$c000 | e e e e e e e e e e e e e e e e
$e000 | f f f f f f f f f f f f f f f f

PAL equations:
[code]
nREGWR = (!M2) | (!CPU_A14) | (CPU_A13) | (CPU_nROMSEL) | (CPU_R_nW);

O1 = (!CPU_A13 & !CPU_A14) | (CPU_nROMSEL);

O2 = (I12);

PRG_nCE = (!CPU_A14 & CPU_nROMSEL) | (!CPU_A13 & CPU_nROMSEL) | (!CPU_R_nW);

PRG_A13 = (CPU_A13);

PRG_A14 = (!REG_D3 & REG_D0 & !CPU_A13) | (CPU_A14 & !CPU_nROMSEL) | (REG_D1 & CPU_nROMSEL) | (REG_D1 & !CPU_A13);

PRG_A15 = (CPU_A14 & !CPU_nROMSEL) | (CPU_A13 & !CPU_nROMSEL) | (REG_D2 & !REG_D0) | (REG_D3 & REG_D2) | (REG_D2 & CPU_A13);

PRG_A16 = (REG_D0 & !CPU_A13) | (CPU_A13 & !CPU_nROMSEL) | (CPU_A14 & !CPU_nROMSEL) | (REG_D3);
[/code]

Notes:
* CPU_A12 is routed into PAL but it is not taken into account in any of its equations
* PRG_A13 is driven by PAL but it is always CPU_A13
* M2 is used as calculation formula for nREGWR (excess) but not taken into account when generating PRG_nCE (possible bus conflicts when M2 is low and address bus is unstable)
* pin 13 of pal (unused O1 output) has the following formula - no idea what it could potentially be used for
[code]
CPU_nROMSEL CPU_A14 CPU_A13 | O1
    0          0       0    |  1
    0          0       1    |  0
    0          1       0    |  0
    1          *       *    |  1
[/code]
* This PCB was prepared for 32 pin EPROM (or mask ROM), additional wire and cut are for make 28 pin EPROM work.

Comments:

Want to leave a comment?

Name:

Page loaded in 0.8 seconds | W3C validate