Page 1 of 1

[cawing] Skip RAM/ROM Checks/ Fast boot

Posted: Tue Sep 19, 2017 9:15 pm
by megaman_exe

Code: Select all

	<cheat desc="Skip RAM/ROM checks and fast boot">
		<script state="on">
			<action>temp0=maincpu.mw@428</action>
			<action>temp1=maincpu.mb@FF8003</action>
			<action>temp2=maincpu.mb@FF0772</action>
		</script>
		<script state="run">
			<action>maincpu.mw@000428=01BC</action>
			<action condition="maincpu.pb@FF8003 == AF">maincpu.pb@FF8003=01</action>
			<action condition="maincpu.pw@FF0772 == 71A0">maincpu.pb@FF0772=0120</action>
		</script>
		<script state="off">
			<action>maincpu.mw@428=temp0</action>
			<action>maincpu.mb@FF8003=temp1</action>
			<action>maincpu.mb@FF0772=temp2</action>
		</script>
	</cheat>
As always, you must actually enable it, reset and you'll see it working. (Unless a "preenable" attribute on the cheat tag is implemented in the near future)
Please let me know if anything is wrong.

Re: [cawing] Skip RAM/ROM Checks/ Fast boot

Posted: Sun Jan 27, 2019 10:28 pm
by Pugsy
Not going to add these, there is are several mismatches in the on,run and off scripts between regions and byte/word size (maincpu.pb@FF0772=0120 is impossible).