Gryzor - interesting bootleg

Discuss hardware-related topics, such as development cartridges, CopyNES, PowerPak, EPROMs, or whatever.

Moderator: Moderators

User avatar
krzysiobal
Posts: 1037
Joined: Sun Jun 12, 2011 12:06 pm
Location: Poland
Contact:

Gryzor - interesting bootleg

Post by krzysiobal »

After SMB2J and SMB3, I think that Gryzor might be next game that has many bootleg versions.

After the first version (that photos can be found somewhere on this forum):
Image

I got photos of second version (unfortunatelly this cartridge is not in my possesion, but I can buy it so if the dump is not available, so let me know and I will get it

Image Image Image Image Image Image Image Image

What is extremelly weird is that they used 2kB RAM (6116) + buffer (74244) + mux (74157) to make eight 7-bit wide CHR registers.
Mirroring is probably hardwired to V and CHR-ROM's A0 and A3 are inverted.

Code: Select all

Bus-conflicts: no
Mirroring: V

PRG: 128 kB ROM
 $8000   $a000   $c000   $e000
+-------+-------+-------+-------+
| $8000 | $a000 | $c000 | {-1}  | mask: $e010
+-------+-------+-------+-------+

CHR: 128 kB ROM
  $0000   $0400   $0800   $0c00   $1000   $1400   $1800   $1c00
+-------+-------+-------+-------+-------+-------+-------+-------+
| $8010 | $8011 | $8012 | $8013 | $8014 | $8015 | $8016 | $8017 | mask: $801f
+-------+-------+-------+-------+-------+-------+-------+-------+
User avatar
tokumaru
Posts: 12427
Joined: Sat Feb 12, 2005 9:43 pm
Location: Rio de Janeiro - Brazil

Re: Gryzor - interesting bootleg

Post by tokumaru »

Why do people call this "Gryzor" when this isn't written anywhere in the cartridge or in the game?
User avatar
freem
Posts: 176
Joined: Mon Oct 01, 2012 3:47 pm
Location: freemland (NTSC-U)
Contact:

Re: Gryzor - interesting bootleg

Post by freem »

It's the name used in Europe for the Arcade game and home computer ports in Europe.
zxbdragon
Posts: 498
Joined: Mon Dec 12, 2011 8:15 pm

Re: Gryzor - interesting bootleg

Post by zxbdragon »

try this :

Code: Select all

board <- {
	mappernum = 23, vram_mirrorfind = false, ppu_ramfind = true,
	cpu_rom = {
		size_base = 1 * mega, size_max = 1 * mega,
		banksize = 0x2000,
	}
	ppu_rom = {
		size_base = 1 * mega, size_max = 1 * mega,
		banksize = 0x0400
	}
};

function cpu_dump(d, pagesize, banksize)
{
	for(local i = 0; i < pagesize ; i += 1){
		cpu_write(d, 0x8000, i);
		cpu_read(d, 0x8000, banksize);
	}
}
function ppu_dump(d, pagesize, banksize)
{
	for(local i = 0; i < pagesize; i+=1){
		cpu_write(d, 0x8014, i);
		ppu_read(d, 0x1000, banksize * 1);
	}
}
如果以上代码不行,请提供初始的32K PRG。
我很喜欢这类卡,我希望在我自己用的Nestopia中添加这些驱动。
zxbdragon
Posts: 498
Joined: Mon Dec 12, 2011 8:15 pm

Re: Gryzor - interesting bootleg

Post by zxbdragon »

ks7049 is vrc2 clone, I dumped.
lidnariq
Posts: 11432
Joined: Sun Apr 13, 2008 11:12 am

Re: Gryzor - interesting bootleg

Post by lidnariq »

zxbdragon wrote:ks7049 is vrc2 clone, I dumped.
But the mapper IC (KS204) only has 28 pins?
zxbdragon
Posts: 498
Joined: Mon Dec 12, 2011 8:15 pm

Re: Gryzor - interesting bootleg

Post by zxbdragon »

lidnariq wrote:
zxbdragon wrote:ks7049 is vrc2 clone, I dumped.
But the mapper IC (KS204) only has 28 pins?
yes,this cart rom working 23

CRC: 295EFA08
SHA-1: 8F4202AEACC78877DD69718EE184096CC6C7F881
System: NES-NTSC
Board: KONAMI VRC2/Mapper 23, Mapper 23
PRG-ROM: 128k
CHR-ROM: 128k
W-RAM: 8k
Solder Pad: H:0 V:1
Dump: Unknown

contra (ks-7049)_001.png
contra (ks-7049)_001.png (5.5 KiB) Viewed 13370 times

类似的卡带应该还有双截龙2 MAPPER 127 (但我一直没有找到这个ROM或卡带)
lidnariq
Posts: 11432
Joined: Sun Apr 13, 2008 11:12 am

Re: Gryzor - interesting bootleg

Post by lidnariq »

... How can that fit?

VRC2 has 40 pins. Have to remove 12 to fit in a DIP28...

With only 128 KiB of PRG, we don't need CPU D4, PRG A17. With only 128 KiB of CHR, omit CHR A17.
Without microwire interface, don't need M2, DO, DI, SK, CS.
With external 74'32, don't need PPU /A13, PPU /OE, CHR /CE.

But that's only 11, and I cannot figure out what else they could get away with excluding. Did they omit the ability to control mirroring?
zxbdragon
Posts: 498
Joined: Mon Dec 12, 2011 8:15 pm

Re: Gryzor - interesting bootleg

Post by zxbdragon »

lidnariq wrote:... How can that fit?

VRC2 has 40 pins. Have to remove 12 to fit in a DIP28...

With only 128 KiB of PRG, we don't need CPU D4, PRG A17. With only 128 KiB of CHR, omit CHR A17.
Without microwire interface, don't need M2, DO, DI, SK, CS.
With external 74'32, don't need PPU /A13, PPU /OE, CHR /CE.

But that's only 11, and I cannot figure out what else they could get away with excluding. Did they omit the ability to control mirroring?
Ks202, ks204 is Kaiser's custom chip or CPLD.
Contra J has no IRQ, MAPPER is simple.
ks204+74xxx.

ks202,ks204应该是kaiser公司的定制芯片或CPLD。
Contra j 没有IRQ,MAPPER简单。
ks204+74xxx.
lidnariq
Posts: 11432
Joined: Sun Apr 13, 2008 11:12 am

Re: Gryzor - interesting bootleg

Post by lidnariq »

But you said KS7049 is a VRC2 variant? (Is its ROMs' contents only difference in the title screen?)

On the board, I see a 74'32 (I assume is there to enable a 28-pin 128 KiB CHR ROM), a 74'157 (I have no idea what it is doing), and a KS204 (VRC2 clone?)

Can the KS204 change nametable mirroring?
Last edited by lidnariq on Sun May 13, 2018 6:55 pm, edited 1 time in total.
User avatar
krzysiobal
Posts: 1037
Joined: Sun Jun 12, 2011 12:06 pm
Location: Poland
Contact:

Re: Gryzor - interesting bootleg

Post by krzysiobal »

Do you have KS204 pinout? I have photos of 2 bootleg carts, based on them:
Gyruss and Metroid
But they are probably using them in some uncommon way + they are not mine so can't trace tracks underneath chips:
Image Image
zxbdragon
Posts: 498
Joined: Mon Dec 12, 2011 8:15 pm

Re: Gryzor - interesting bootleg

Post by zxbdragon »

krzysiobal wrote:Do you have KS204 pinout? I have photos of 2 bootleg carts, based on them:
Gyruss and Metroid
But they are probably using them in some uncommon way + they are not mine so can't trace tracks underneath chips:
Image Image

this cart is dumped.rom pulibc.working in fceux and nestopia plus!

I have this two cart. I have more fds2nes cart. all dumped,all emu.

krzysiobal,我希望在您的帮助下,完成我的自己的对盗版卡的心愿。

目前我正在研究卡圣的http://cah4e3.shedevr.org.ru/cartsbase/NT-646.jpg。

DUMP,但是IRQ没有模拟。
lidnariq
Posts: 11432
Joined: Sun Apr 13, 2008 11:12 am

Re: Gryzor - interesting bootleg

Post by lidnariq »

krzysiobal wrote:But they are probably using them in some uncommon way + they are not mine so can't trace tracks underneath chips:
KS7037 and KS7057 have implementations in FCEUX.

FCEUX's implementation of KS7037 looks N108 shaped; the source code for KS7057 looks VRC2 shaped. (Yes, that's worrysome)
zxbdragon
Posts: 498
Joined: Mon Dec 12, 2011 8:15 pm

Re: Gryzor - interesting bootleg

Post by zxbdragon »

lidnariq wrote:
krzysiobal wrote:But they are probably using them in some uncommon way + they are not mine so can't trace tracks underneath chips:
KS7037 and KS7057 have implementations in FCEUX.

FCEUX's implementation of KS7037 looks N108 shaped; the source code for KS7057 looks VRC2 shaped. (Yes, that's worrysome)
ks204应该是可编程的芯片。因为ks204同时也是小游戏合卡的控制芯片。
lidnariq
Posts: 11432
Joined: Sun Apr 13, 2008 11:12 am

Re: Gryzor - interesting bootleg

Post by lidnariq »

OH. That's why you said CPLD. Understood.
Post Reply