Anyone out there know what's involved for a Cyvern conversion / suitable donors.
I'm reading it's just drop in some roms and that's it?
Cheers.
I'm reading it's just drop in some roms and that's it?
Cheers.
Sometimes science needs sacrifies to advanceI've offered before, and I'll offer again. If anyone wants to look into this and is capable of dumping the ROMs and exploring the PLD I have a conversion I'd lend to the cause as long as it returns in the same working condition it leaves in.
Makes sense.The difficulty of dumping depends on what needs to be dumped. we may only need the program ROMs dumped which would be trivial since they're socketed EPROMs. easy way to check would be to just dump them and see if it works in MAME with the unmodified graphics and sound ROMs.
I've only started messing with this recently but generally I'd:I'm not too keen on how to mess about with them in MAME
Thanks for the in-depth info, and everyone for their efforts in bringing yet another Joerg "special" to the public domain. Really fiending to play Cyvern again -- it really does have a bit of everything in it as far as the genre is concerned.There are 4 different ROM board versions but they're all functionally identical AFAIK.
If you want to keep the same ROM board that Cyvern was meant for you want a ROM-2 Board which is also used by Jan Jan Paradise... the cheapest Super Nova game you can buy: https://auctions.yahoo.co.jp/search...=&sc_i=&exflg=1&p=ジャンジャンパラダイス&x=0&y=0&fixed=0
There are two socketed program ROMs but everything else is SMD. so like the PGM conversions and NAOMI cart conversions it will require desoldering the original SMD ROMs and soldering in new ones along with a 3.3V conversion to power them.
I don't know what needs to be done for protection. I believe these games use a PLD for protection so either that needs to be reproduced and swapped out, or the ROMs need to be patched and I don't believe any of that has been made available publicly.
According to MAME the PLD only checks a specific string the BIOS:Thanks for the in-depth info, and everyone for their efforts in bringing yet another Joerg "special" to the public domain. Really fiending to play Cyvern again -- it really does have a bit of everything in it as far as the genre is concerned.
If anyone makes a conversion on the forums and wants to sell it, I'd buy one anyday over Mr. ModBios' jizz boards.
I understand it's only used for region protection so if your motherboard is say, Japanese, then you must use the Japanese PLD.MAME said:WRITE32_MEMBER(skns_state::hit2_w)
{
hit_t &hit = m_hit;
// Decide to unlock on country char of string "FOR xxxxx" in Bios ROM at offset 0x420
// this code simulates behaviour of protection PLD
data>>= 24;
hit.disconnect = 1;
switch (m_region)
{
case 'J':
if (data == 0) hit.disconnect= 0;
break;
case 'U':
if (data == 1) hit.disconnect= 0;
break;
case 'K':
if (data == 2) hit.disconnect= 0;
break;
case 'E':
if (data == 3) hit.disconnect= 0;
break;
case 'A':
if (data < 2) hit.disconnect= 0;
break;
// unknown country id, unlock per default
default:
hit.disconnect= 0;
break;
}
}
Is there no protection beyond the region? does that mean any conversion can be done without patching the game ROMs?I understand it's only used for region protection so if your motherboard is say, Japanese, then you must use the Japanese PLD.
I don't know, possibly not after what I read in MAME, maybe someone with the real hardware could have a go an report here.Is there no protection beyond the region? does that mean any conversion can be done without patching the game ROMs?I understand it's only used for region protection so if your motherboard is say, Japanese, then you must use the Japanese PLD.
have you not programmed these?!I'm guessing it has something to do with programming the M27C801 Eproms
Of course I programmed themhave you not programmed these?!I'm guessing it has something to do with programming the M27C801 Eproms
I don't know that it is. There was a lot of assumptions that the ROMs AMB was using for the games had been patched. Apocalypse above seemed to imply that might not be the case, but I don't believe we've had a hard confirmation either way.It seems like such a straight forward conversion
The roms definitely could have been patched but @pacman70 did state that all he needed was the modbios to make it work.I don't know that it is. There was a lot of assumptions that the ROMs AMB was using for the games had been patched. Apocalypse above seemed to imply that might not be the case, but I don't believe we've had a hard confirmation either way.It seems like such a straight forward conversion
There are also two PALs on these carts and it's unclear if those need to be changed as well.