logoUnique visits: 7805
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 190 in 1
Typemulti
Mapper911
Original mapper0
PCB marks0382
Tags:#hand-drawn tracks
Uploaded:2020-09-17 08:28:52

Elements:
NameValue
IC127F080
IC227F080
IC327F080
IC474273
IC574273
IC674153
IC77400
IC87432
C1?
CART1FAMICOM_CART
D1
R14,7k

Chip signature:
27F080+27F080+27F080+74273+74273+74153+7400+7432

PCB top:

PCB bottom:

Shell top:


Shell bottom:

Screenshoots:

Extra info:
http://forum.pegasus-gry.com/index.php/topic,7498.msg69684.html#msg69684

e:\Pulpit\projekty\elektronika\6502, nes, pegasus\cart-RevEn,Naprawa\Super 190 in 1\info\

// mykazzo dumping script
for (int i = 0; i < 2048 / 16; ++i) {
	cpuWrite(0x8000 | shi(i, 0, 8) | shi(i, 1, 9) | shi(i, 2, 10) | shi(i, 3, 11) | shi(i, 4, 12) |
					  shi(i, 5, 13) | shi(i, 6, 6) |
					  (1 << 5), 0);
	cpuRead(0x8000, 0xbfff);
}

for (int i = 0; i < 1024 / 8; ++i) {
	cpuWrite(0x8000 | (i >> 2), i & 3);
	ppuRead(0x0000, 0x1fff);
}
			

Proszę:

[url=https://obrazki.elektroda.pl/2891849200_1553175084.png][img]https://obrazki.elektroda.pl/2891849200_1553175084_thumb.jpg[/img][/url] [url=https://obrazki.elektroda.pl/1962079400_1553175086.png][img]https://obrazki.elektroda.pl/1962079400_1553175086_thumb.jpg[/img][/url] [url=https://obrazki.elektroda.pl/6557208100_1553175081.png][img]https://obrazki.elektroda.pl/6557208100_1553175081_thumb.jpg[/img][/url] 

[code]
Reg @ $8000-$ffff, no bus conflicts
   fedcda9876543210    76543210]
A~[1.PPPPPPmPvCCCCC] D~[......CC]
     ||||||||||||||           ||
     |||||||||+++++-----------++-- 8kb CHR bank
     ||||||||+-------------------- PRG mode (0=32K, 1=16K)
     ||||||+---------------------- mirroring (0=V, 1=H)
     ++++++-+--------------------- 16kB PRG bank (A6 = PRG-A20. A8=PRG-A14, A9=PRG-A15, ...)
	 
1.PPPPPPmPvCCCCC ......CC
1000000110010000 ......00 power up

	 
           
[/code]

Poniżej skrypt do dumpowania w Kazzo (mapperowi przypisałem nr 0, ale po zdumpowaniu trzeba mu nadać innym nr i zmodyfikować FCEUX). Oczywiście katoda dioda musi być podłączona do +5V.

[code]
board <- {
   mappernum = 0,
   cpu_rom = {
      size_base = 16 * mega, size_max = 16 * mega, banksize = 0x4000
   },
   ppu_rom = {
      size_base = 8 * mega, size_max = 8 * mega, banksize = 0x2000
   },
   ppu_ramfind = false, vram_mirrorfind = false
};

function cpu_dump(d, pagesize, banksize) {
  for (local i = 0; i < pagesize; i += 1) {
    cpu_write(d, 0x8000 | ((i & 0x3F) << 8) | (1 << 5) | (i & 0x40), 0);
    cpu_read(d, 0x8000, 0x4000);
  }
}


function ppu_dump(d, pagesize, banksize) {
  for (local i = 0; i < pagesize; i += 1) {
    cpu_write(d, 0x8000 | (i >> 2), i & 0x3)
    ppu_read(d, 0x0000, 0x2000);
  }
}[/code]



Comments:

Want to leave a comment?

Name:

Page loaded in 0.8 seconds | W3C validate