[jockeyc][inttoote2] Time Money
Posted: Thu Nov 15, 2018 9:31 am
Two sets of cheats in two days. I have a new found interest in MAME again... The debugger has changed a tonne from the old, old days. And trying to remember that some cpu's are big endian...
Here's a few from some horse racing game I stumble upon. The second is a clone of the first.
jockeyc.xml
inttoote2.xml
You can have more credit than provided, but no need to be greedy. I also opted for an "on" cheat, rather than a run cheat. No reason why, just seemed novel. The timer is the count down on the main screen after you start betting.
Here's a few from some horse racing game I stumble upon. The second is a clone of the first.
jockeyc.xml
Code: Select all
<mamecheat version="1">
<cheat desc="PL1 9,999 Credits Now!">
<script state="on">
<action>:maincpu.pw@FFD04A=270F</action>
</script>
</cheat>
<cheat desc="PL2 9,999 Credits Now!">
<script state="on">
<action>:maincpu.pw@FFD04E=270F</action>
</script>
</cheat>
<cheat desc=" Infinite Timer">
<script state="run">
<action>:maincpu.pw@FFD28C=1FFC</action>
</script>
</cheat>
</mamecheat>
<!-- Cheat file downloaded from http://www.mamecheat.co.uk, see cheat.txt for list of contributors. -->
inttoote2.xml
Code: Select all
<mamecheat version="1">
<cheat desc="PL1 9,999 Credits Now!">
<script state="on">
<action>:maincpu.pw@FFD04A=270F</action>
</script>
</cheat>
<cheat desc="PL2 9,999 Credits Now!">
<script state="on">
<action>:maincpu.pw@FFD04E=270F</action>
</script>
</cheat>
<cheat desc=" Infinite Timer">
<script state="run">
<action>:maincpu.pw@FFD28C=1FFC</action>
</script>
</cheat>
</mamecheat>
<!-- Cheat file downloaded from http://www.mamecheat.co.uk, see cheat.txt for list of contributors. -->