logoUnique visits: 7718
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
220 in 1
Typemulti
Mapper?
Original mapper0
PCB marks910307 0380
Tags:
Uploaded:2018-11-11 12:16:52

Elements:
NameValue
IC127F080
IC227F080
IC36264A
IC474273
IC574153
IC674139
IC77474
IC87402
C110n
CART1FAMICOM_CART
D1

Chip signature:
27F080+27F080+6264A+74273+74153+74139+7474+7402

PCB top:

PCB bottom:

Shell top:
No photo

Shell bottom:
No photo
Screenshoots:
No photo
Extra info:
http://forums.nesdev.com/viewtopic.php?f=9&t=18019

  $8001      $8000        (mask: $8001)
[......wP]  [PmvPPPPp] 
       ||    |||||||| 
       |+----+||+++++- 16K/32K PRG bank (p ignored in 16k mode)
       |      |+------- PRG mode (0=32K,1=16K)
       |      +-------- mirroring (0=V,1=H)
       +--------------- 1=CHR-RAM is write protected
On power up & reset, both registers are cleared


board <- {
  mappernum = 255,
  cpu_rom = { size_base = 2097152, size_max = 2097152, banksize = 0x4000 },
  ppu_rom = { size_base = 0, size_max = 0, banksize = 0 },
  ppu_ramfind = false, vram_mirrorfind = false
};

function cpu_dump(d, pagesize, banksize) {
  for (local i = 0; i < (1 << 7); ++i) {
    cpu_write(d, 0x8000, (i & 0x1F) | (1 << 5) | ((((i >> 5) & 1) << 7)));
	cpu_write(d, 0x8001, (i >> 6) & 1);
	cpu_read(d, 0x8000, banksize);
  }
}

function ppu_dump(d, pagesize, banksize) {
 
}

Comments:

Want to leave a comment?

Name:

Page loaded in 0.8 seconds | W3C validate