logoUnique visits: 7513
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
1993 super hik 4 in 1
Typemulti
Mapper918
Original mapper4
PCB marks820733C 4373-T
Tags:
Uploaded:2019-08-28 02:47:52

Elements:
NameValue
IC1K005A(27F080)
IC2K005B(27F080)
IC3AX5202P(MMC3)
IC474161
IC574157
C110n
CART1FAMICOM_CART
D1
R12.2k

Chip signature:
K005A(27F080)+K005B(27F080)+AX5202P(MMC3)+74161+74157

PCB top:

PCB bottom:

Shell top:


Shell bottom:

Screenshoots:

Extra info:
PRG A16..A13, CHR A16..A10, MIRRORING - controlled by MMC3

additional register at $6000-$7fff
   fedcba9876543210
A~[011..........cba]
                |||
                ||+- CHR mode
                |+-- PRG A17/CHR A17
                +--- PRG A18
				
  | PRG PRG | CHR CHR |
a | A18 A17 | A18 A17 |
--+---------+---------|
0 |  c   b  |  0  MC3 | 
1 |  c   b  |  1   b  |



--
dumping:
	cpuWrite(0xa001, 0x80);

	for (int b = 0; b < 4; ++b) {
		cpuWrite(0x6000 | (b << 1), 0);
		for (int a = 0; a < 128 / 8; ++a) {
			cpuWrite(0x8000, 6);
			cpuWrite(0x8001, a);
			cpuRead(0x8000, 0x9fff);
		}
	}

	cpuWrite(0x6000, 0);
	cpuWrite(0x8000, 2);
	for (int a = 0; a < 256 / 1; ++a) {
		cpuWrite(0x8001, a);
		ppuRead(0x1000, 0x13ff);
	}

	for (int b = 0; b < 2; ++b) {
		cpuWrite(0x6001 | (b << 1), 0);
		for (int a = 0; a < 128 / 1; ++a) {
			cpuWrite(0x8001, a);
			ppuRead(0x1000, 0x13ff);
		}
	}

Comments:

Want to leave a comment?

Name:

Page loaded in 0.8 seconds | W3C validate