logoUnique visits: 7381
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
11 in 1 Ball Games
Typemulti
Mapper367
Original mapper0+2
PCB marksF-13-G
Tags:#11 in 1 ball games
Uploaded:2020-04-22 11:37:23

Elements:
NameValue
IC127F080
IC26264
IC37432
IC474161
IC516L8
C12.2n
C2-
C3-
C4-
C5-
C6-
CART1FAMICOM_CART
D1
R11k

Chip signature:
27F080+6264+7432+74161+16L8

PCB top:

PCB bottom:

Shell top:
No photo

Shell bottom:
No photo
Screenshoots:

Extra info:
I've got the other version of this cartridge - this one with less chips (but PAL instead) and featuring Double Dribble as last game.
There seem to be subtle difference between the registers as well as the ROM differs in $8a56-$8a63 (which is executed when pointing cursor on the last game)

[code]
$6000 [...X..Y.] (mask=$E000)
          |  |
          |  +--- PRG mode            (O6)
          +------ mirroring: 0=V, 1=H (O4)
          
$8000 [...EABCD] (mask=$8000)
          |||||
          |++++-- PRG bank
          +------ PRG mode (O5)

EY  $6000   $8000   $a000   $c000   $e000
00 1B1111  ABCD00  ABCD01  AB1110  AB1111
01 1BCD11  ABCD00  ABCD01  ABCD10  ABCD11
10 1B1111  ABCD10  ABCD11  AB1110  AB1111
11 1BCD11  ABCD00  ABCD01  ABCD10  ABCD11
[/code]

PAL equations:
[code]
               .---v---.
CPU_nROMSEL -> |01   20| -- +5V
    CPU_RnW -> |02   19| -> PRG_nCE
     CPU_M2 -> |03   18| -> n/c (O6, feedback latch as $6000.1)
    CPU_A13 -> |04   17| -> n/c (O5, feedback latch as $8000.4)
    CPU_A14 -> |05   16| -> n/c (O4, feedback latch as $6000.4)
     CPU_D1 -> |06   15| -> PRG_A14
    PPU_A10 -> |07   14| -> O2 (input to OR gates, setting PRG-A15/PRG-A16)
    PPU_A11 -> |08   13| <- n/c (unused input)
     nRESET -> |09   12| -> CIRAM_A10
        GND -- |10   11| <- CPU_D4
               '-------'
		 
PRG_nCE = (!CPU_A13 & CPU_nROMSEL) | (!CPU_A14 & CPU_nROMSEL) | (!CPU_RnW);
O1 = unused input

--latch
O4 <= '0' when (!CPU_D4 & CPU_A14 & CPU_A13 & M2 & !CPU_RnW & CPU_nROMSEL) else
      '1' when (CPU_D4 & CPU_A14 & CPU_A13 & M2 & !CPU_RnW & CPU_nROMSEL);

--latch
05 <= '0' when nRESET=0 else
      '0' when CPU_nROMSEL=0 and CPU_RnW=0 and CPU_D4 = 0 else
      '1' when CPU_nROMSEL=0 and CPU_RnW=0 and CPU_D4 = 1

--latch
O6 <= '1' when nRESET=0 else
      '0' when (!CPU_D1 & CPU_A14 & CPU_A13 & M2 & !CPU_RnW & CPU_nROMSEL) else
      '1' when (CPU_D1 & CPU_A14 & CPU_A13 & M2 & !CPU_RnW & CPU_nROMSEL);     
      
CIRAM_A10 = PPU_A10 when O4=0 else PPU_A11

O2 <= CPU_A14 when O6=0 else 0

PRG_A14 <= 1 when O5=1 and O6=0 else CPU_A14
[/code]


[url=https://obrazki.elektroda.pl/7991143400_1587636237_org.jpg][img]https://obrazki.elektroda.pl/7991143400_1587636237_thumb.jpg[/img][/url] [url=https://obrazki.elektroda.pl/8984849900_1587636239_org.jpg][img]https://obrazki.elektroda.pl/8984849900_1587636239_thumb.jpg[/img][/url] [url=https://obrazki.elektroda.pl/1649346700_1587636269.png][img]https://obrazki.elektroda.pl/1649346700_1587636269_thumb.jpg[/img][/url] 

Comments:

Want to leave a comment?

Name:

Page loaded in 0.8 seconds | W3C validate