Kickass Tony, thanks that was fast!
Thanks for showing me the technicality of it, I'm understanding, just need more experience with it I suppose.
I was surprised this was not known of before, since there were so few 32x games in the first place.
Announcement
Collapse
No announcement yet.
Doom 32x ROM Hacks
Collapse
X
-
Was able to do the Zaxxon's Motherbase 2000 debug menu with a single Game Genie code. Many thanks for Ugetab's 68000 instruction list.
The assembly tracer was freaking out because of the 32x stuff, but was able to get enough info to make the GG code. This one was all about the correct replacement instruction. Here's the assembly that loads a value of 02 into your RAM address (FF0552)...
FF:00D6 1B 40 MOVE.b D0,$0006(A5) A0=00FFDB26 A1=00FFD396 A2=00A01450 A3=00882042 A4=00000000 A5=00FF054C A6=00FFCFFE A7=00FFFFFA D0=00000002 D1=00000008 D2=00000009 D3=00000000 D4=00000000 D5=00000000 D6=00000000 D7=0000FF00 xnZvc
Here's what that means... it's moving the value from register D0 (which is 02) to RAM address A5 + 0006 (A5 = FF054C + 0006 = FF0552). We want a value of 04 in that RAM address instead. Here's how I did that... I just changed the 1B 40 MOVE.b D0,$0006(A5) instruction to this instruction instead: 58 2D addq.b #4, (-$0006,A5). That adds 04 to our RAM address (FF0552).
Here's our code: $00BBFC:582D = F07T-BT16 Enable debugger menu.
Only tested it enough to see that the hidden menu showed up and was functional.
EDIT: Good find Mez!Last edited by Tony H; 01-02-2011, 11:22:45 PM.
Leave a comment:
-
Off Topic:
Thanks for the congrats!
Means a lot coming from the champion of Genesis Game Genie lol.
I used the same method that I showed you with CE/Fusion.
I thought about making a guide: 'An Insane Way To Make Game Genie Codes For Any System That Fusion Emulates'.
One last thing, you think you could convert the PAR code for Zaxxon's Motherbase 2000 (32X) to Game Genie for me?
FF0552:0004
Start - Start/end debugging
D-Pad - Move Object
A - Cycle down through the different objects
C - Cycle up through the different objects
B - Place current object down
Y - Remove current object
X - Cycle through the different speeds
Z - Move the map forward at the speed set by X
Leave a comment:
-
The only problem I have with Master Codes is figuring out if they're needed on real hardware or not. There are MANY games that need a Master Code when played on an emulator, but don't need a Master Code when played on real hardware. Of course, it could just be the emulator I'm using. :-)Originally posted by Mezmorize View PostI had to use your Master Code for my first Game Genie code for Genesis.
I was patching the ROM and trying to load it with Fusion, and was only getting a black screen.
EDIT: BTW, congrats on your first Genesis Game Genie code!Last edited by Tony H; 01-02-2011, 12:19:23 PM.
Leave a comment:
-
Nice work Tony!
I'm curious if you use Windows or not, the current version of Fusion is 3.64.
I wished the Alt+G worked for Sega CD also >.<
I had to use your Master Code for my first Game Genie code for Genesis.
I was patching the ROM and trying to load it with Fusion, and was only getting a black screen.
Leave a comment:
-
Since I use special builds of Gens for 99% of my hacking/code making, I rarely use Kega Fusion, but I just found out that Kega Fusion v3.63 accepts these 32x codes (no hacking needed). And if you are using Fusion, it looks like you may not need the 32x master code. The 32x master code is probably still needed when you use hacked ROMs in a flash cart, or other emulators.Last edited by Tony H; 01-02-2011, 11:51:46 AM.
Leave a comment:
-
I tried making an infinite health ROM hack, but soon found out that the enemies use the same routine for damage. My first infinite health hack made the enemies invincible too. Ugh.Originally posted by orcanaoftime View PostVery nice work Tony! Thank you for sharing the codes. Can you find an infinite heath code?
With Genesis games that have enemies that use the same routine for damage (ie. most fighting games), it was usually fairly easy to find some unused/unneeded programing, and add some new programing that keeps forcing a value into the RAM address for your health. I haven't figured out how to do that in 32x games yet.
There is a controller cheat for God mode, so I may not spend anymore time on that hack.
Some more new Doom 32x hacks...
$03CB50:7104
Blue health pick-ups are worth 4 (instead of only 2). Go to ROM address $03CB50 and change the 7102 to 7104.
$03CB50:7108
Blue health pick-ups are worth 8 (instead of only 2). Go to ROM address $03CB50 and change the 7102 to 7108.
$03CB68:7104
Armor pick-ups are worth 4 (instead of only 2). Go to ROM address $03CB68 and change the 7102 to 7104.
$03CB68:7108
Armor pick-ups are worth 8 (instead of only 2). Go to ROM address $03CB68 and change the 7102 to 7108.
$03D26C:0009
Your armor never gets damaged. Go to ROM address $03D26C and change the 3128 to 0009.
=======================
Extra info...
As with the ammo codes, most of these latest codes can be adjusted so you can modify the game to make it easier or harder. They use the same code format as before (7100 = add 00, 7101 = add 01, etc).
The "Armor never gets damaged" code is different. It uses 0009 as the value which is NOP (No Operation) in 32x assembly, and can't be adjusted.
Leave a comment:
-
Very nice work Tony! Thank you for sharing the codes. Can you find an infinite heath code?Last edited by orcanaoftime; 01-01-2011, 03:00:53 PM.
Leave a comment:
-
Doom 32x ROM Hacks
The infinite ammo codes below are not supported by any emulator that I know of, so you'll have to hack them into your ROM. Although I just found out that if you have a Neo Myth, you can input the cheat codes in the cheat manager to apply on the fly. Thanks to Chilly Willy for that info.
Doom 32x ("JU" version)
Open up your Doom 32x (JU) ROM with a hex editor (must be in "bin" format). Hack the following codes into the ROM...
$07CC:6002
32x Master Code (must use). Go to ROM address $07CC and change the B446 to 6002.
$03F580:7100
Infinite pistol ammo. Go to ROM address $03F580 and change the 71FF to 7100.
$03F696:7100
Infinite shotgun ammo. Go to ROM address $03F696 and change the 71FF to 7100.
$03F38C:7100
Infinite Rocket Launcher ammo. Go to ROM address $03F38C and change the 71FF to 7100.
=========================
Some extra technical info...
The 3 ammo codes/hacks all have a code value of 7100. The original value at these ROM addresses is 71FF. 71FF is a 32x assembly instruction:
71FF = add #FF, r1
By adding "FF", you are really subtracting #01 (from your amount of ammo). By changing the value from 71FF to 7100, you are now adding #00, so your ammo never decreases. If you want your hack to make it so your amount of ammo INCREASES every time your fire a shot, just change the value to 7101.
Also, if you see some Doom 32x PAR codes for infinite ammo on the internet that begin with "FFxxxx"... they don't work. "FFxxxx" is a standard Genesis/MD RAM address. All those codes do is freeze the ammo value that's shown on the screen, but you'll soon find out that your ammo will still run out. The ROM hacks above change the actual 32x programing/assembly, and give you true infinite ammo.Tags: None
Leave a comment: