
Luckily, there is some data in "standard" RAM, and I've noticed that the game still had no cheats for the 0.139 collection ... So here are the basic cheats (enough to end the game) to replace what's in your "empty" pachifev.xml file :
Code: Select all
<mamecheat version="1">
<cheat desc="Time PL1">
<parameter>
<item value="0x2328">Infinite</item>
<item value="0x0001">Game Over</item>
</parameter>
<script state="run">
<action condition="(maincpu.pw@e01c!=0000)">maincpu.pw@e01c=param</action>
</script>
</cheat>
<cheat desc="End level PL1">
<script state="on">
<action condition="(maincpu.pb@e001 LE 0002)">maincpu.pw@e016=maincpu.pw@e028</action>
<action condition="(maincpu.pb@e001==0004)">maincpu.pw@e016=maincpu.pw@e02a</action>
</script>
</cheat>
<cheat desc="Time PL2">
<parameter>
<item value="0x2328">Infinite</item>
<item value="0x0001">Game Over</item>
</parameter>
<script state="run">
<action condition="(maincpu.pw@e024!=0000)">maincpu.pw@e024=param</action>
</script>
</cheat>
<cheat desc="End level PL2">
<script state="on">
<action condition="(maincpu.pb@e001 LE 0002)">maincpu.pw@e01e=maincpu.pw@e028</action>
<action condition="(maincpu.pb@e001==0004)">maincpu.pw@e01e=maincpu.pw@e02a</action>
</script>
</cheat>
</mamecheat>
<!-- Cheat file downloaded from http://www.mamecheat.co.uk, see cheat.txt for list of contributors. -->
If you don't understand everything, wait for MAME 0.139u2 and read my notes in the pachifev.c driver ... But feel free to ask if you have some questions ...

