My Hit Anywhere tutorial still applies for arcade games. If your ASM is good you shouldn't have too many problems. The MAME/MESS debugger is as powerful as FCEUX's debugger probably better in some areas. To set breakpoints on read or write it should be like this:
This link has more help here. Right now the website is down but contains information for the debugger.
Too bad this game doesn't run too well.
Code:
Break on Read or Write wp [address],[size],[rw] Example: wp 1234,1,r - for BPR wp 1234,1,w - for BPW Breakpoint on Execution bp 1234 - for BPX You can type help in the debugger window like so: help watchpoints
Code:
[COLOR="Blue"]Mortal Kombat 4 (version 3.0) - MAME[/COLOR] <cheat desc="Hit Anywhere Both Players"> <script state="run"> <action>maincpu.pd@01EE09=6001EE11</action> </script> </cheat> <cheat desc="Infinite Health PL1"> <script state="run"> <action>maincpu.pd@00209E=00000001</action> </script> </cheat> <cheat desc="Infinite Turbo PL1"> <script state="run"> <action>maincpu.pd@0020A0=00000000</action> </script> </cheat> <cheat desc="Infinite Health PL2"> <script state="run"> <action>maincpu.pd@00209F=00000001</action> </script> </cheat> <cheat desc="Infinite Turbo PL2"> <script state="run"> <action>maincpu.pd@0020A1=00000000</action> </script> </cheat>
Comment