Mike Tyson's Punch-Out!!: MTPO Milli Hack is a modification for the NES classic that enhances the game's timer accuracy. It replaces the original fight time reporting with millisecond precision at the end of matches. Subsequent updates introduced features like displaying Tyson's victory time and a last-punch-landed timer, enhancing the overall gameplay experience.
MTPO Milli Hack
Description: The default MTPO fight time reporting uses a crude rounding technique. This hack allows for accurate millisecond timer reporting at the end of fights.
v2.0: added support for reporting Tyson fight time on victory screen.
v3.0: Replaced points counter with realtime last-punch-landed timer. It should not affect game timing/lag. I have seen instances of overrun ahead of actual round timer, this only appears to occur on knockdowns not ending the fight.
See the readme in zip for patch/assembly details.
MTPO Milli Hack
Description: Add granularity to the millisecond timer in MTPO reported at the end of fights.
History:
v1.0 (5/1/20): Initial ver, updated end of fights for all characters except Tyson.
v2.0 (5/3/20): Update to add time to Tyson victory screen.
v3.0 (5/7/20): Replaced points counter with realtime last-punch-landed timer. It should not affect game timing/lag.
I have seen instances of overrun ahead of actual round timer, this only appears to occur on knockdowns not ending the fight.
RAM position 0x306 contains the MS counter, while 0x307 appears to contain an inverse counter. It's not clear the role of 0x307, perhaps an anti-cheat/sanity check (not used afaict).
At the beginning of round 1, 0x308/9 are loaded with: 04 F9 (1st rd), 05 6D (2nd rd), 05 F8 (3rd rd). The MS counter at 0x306 adds 0x308 to itself with each iteration, until it is >= 0x64 (100).
This code can be traced:
03:8780:AD 07 03 LDA $0307 = #$AF
03:8783:18 CLC
03:8784:6D 09 03 ADC $0309 = #$F9
03:8787:8D 07 03 STA $0307 = #$AF
03:878A:AD 06 03 LDA $0306 = #$5E ; MS
03:878D:6D 08 03 ADC $0308 = #$04
03:8790:8D 06 03 STA $0306 = #$5E
03:8793:C9 64 CMP #$64 ; is MS >= 0x64
03:8795:90 52 BCC $87E9 ; if not, skip updating time
03:8797:E9 64 SBC #$64 ; subtract 0x64
03:8799:8D 06 03 STA $0306 = #$5E ; save the overflow
Once victory occurs, the following code translates the MS on the win screen:
So the above essentially rounds the actual MS to the next lowest 16, then divides by 8. This basically gives us all the even #s from 0-12.
Finally it takes this even # and pulls the limited MS values from a lookup table (there are a few versions):
06:BCA2:B9 B0 BC LDA $BCB0,Y @ $BD3D = #$5C
06:BCA5:8D 07 20 STA PPU_DATA = #$00
06:BCA8:C8 INY
06:BCA9:B9 B0 BC LDA $BCB0,Y @ $BD3D = #$5C
06:BCAC:8D 07 20 STA PPU_DATA = #$00
BCB0: 01 01 03 06 05 09 07 02 09 03 0A 08 0A 0A (if you subtract one from each, this is .00, .25, etc)
So we replace the drawing code and lookup table with a routine to convert the hexadecimal MS (0x306) directly to decimal (+1 to adjust for tile ID):
06:BC99:AD 06 03 LDA $0306 = #$4A
06:BC9C:C9 64 CMP #$64 ; is the MS actually = 100? it can happen (race condition?) before the seconds are updated
06:BC9E:90 02 BCC $BCA2
06:BCA0:A9 63 LDA #$63 ; if it is, we will just make it .99
06:BCA2:A2 01 LDX #$01
06:BCA4:C9 0A CMP #$0A
06:BCA6:90 06 BCC $BCAE
06:BCA8:E9 0A SBC #$0A
06:BCAA:E8 INX
06:BCAB:4C A4 BC JMP $BCA4
06:BCAE:A8 TAY
06:BCAF:C8 INY
06:BCB0:8E 07 20 STX PPU_DATA = #$00 ; store tenths
06:BCB3:8C 07 20 STY PPU_DATA = #$00 ; store hundreths
06:BCB6:60 RTS
*** v2.0: Disassembly for Tyson time addition ***
First thing to do is modify the victory text(0x120F7) to make room for the time. I simply truncated it at the 3rd line and added 'TIME' to start 4th line.
So we intercept @ B76C and jump to our code in some unused ROM space:
04:8D50: A9 23 LDA #$23
04:8D52: 8D 06 20 STA PPU_ADDRESS = #$44
04:8D55: A9 56 LDA #$56
04:8D57: 8D 06 20 STA PPU_ADDRESS = #$44 ; set PPU write address to 2356, 4th line of text
04:8D5A: 20 F2 C0 JSR $C0F2 ; dump m:ss
04:8D5D: 20 94 BC JSR $BC94 ; dump .ms
04:8D60: A9 2B LDA #$2B
04:8D62: 8D 07 20 STA PPU_DATA = #$00 ; ,
04:8D65: A9 1C LDA #$1C
04:8D67: 8D 07 20 STA PPU_DATA = #$00 ; R
04:8D6A: A6 06 LDX $06 = #$01
04:8D6C: E8 INX
04:8D6D: 8E 07 20 STX PPU_DATA = #$00 ; x
04:8D70: A9 01 LDA #$01 ; execute code
04:8D72: 20 13 C1 JSR $C113 ; we overwrote above
04:8D75: 4C 71 B7 JMP $B771 ; return to original code
*************************************************
*** v3.0: Disassembly for pts => time hack ******
First change the 'POINTS' text in the ROM (0x191D2) to 'TIME:'. Next, the code for updating the points total occurs @ C0C3:
07:C0C3: A9 20 LDA #$20
07:C0C5: 8D 06 20 STA PPU_ADDRESS = #$00
07:C0C8: A9 88 LDA #$88 ; $2088 is where pts total starts
07:C0CA: 8D 06 20 STA PPU_ADDRESS = #$00
07:C0CD: A2 00 LDX #$00
07:C0CF: BD F1 03 LDA $03F1,X @ $0430 = #$00
07:C0D2: 8D 07 20 STA PPU_DATA = #$00
07:C0D5: E8 INX
07:C0D6: E0 06 CPX #$06 ; loop to print up to 6 digits
07:C0D8: D0 F5 BNE $C0CF
The updated code for the time hack:
07:C0C3: A9 20 LDA #$20
07:C0C5: 8D 06 20 STA PPU_ADDRESS = #$4D
07:C0C8: A9 87 LDA #$87 ; adjusted start by -1 for more room
07:C0CA: 8D 06 20 STA PPU_ADDRESS = #$4D
07:C0CD: 20 F2 C0 JSR $C0F2 ; dump m:ss
07:C0D0: 20 94 BC JSR $BC94 ; dump .ms
07:C0D3: EA NOP
07:C0D4: EA NOP
07:C0D5: EA NOP
07:C0D6: EA NOP
07:C0D7: EA NOP
07:C0D8: EA NOP
07:C0D9: EA NOP
*************************************************
Tested on all characters in FCEUX 2.2.3 / Mesen 0.9.9.
Thanks to http://tasvideos.org/GameResources/NES/MikeTysonsPunchout/RamMap.html for helping get me started. Patch data below.
Stag Shot
==================================================================================
Source ROM: Mike Tyson's Punch-Out!! (USA).nes (md5=B9A66B2760DAA7D5639CBAD903DE8A18)
Patched ROM v3 md5=1E613757E0CA9FE41A637913FD8CA3AA
Database match: Mike Tyson's Punch-Out!! (Japan, USA)
Database: No-Intro: Nintendo Entertainment System (v. 20180803-121122)
File SHA-1: 5D287F933931B14504EB2A3C40FEF1AF2AE083EA
File CRC32: 83DB7938
ROM SHA-1: 339EB36ACBBBEC96C8D177F0265253A5764CC1FB
ROM CRC32: 92A2185C
Mike Tyson's Punch-Out!!: MTPO Milli Hack Game Wiki
Experience Mike Tyson's Punch-Out!!: MTPO Milli Hack Game (USA) online wiki exclusivly at RetroSpot.net. View Mike Tyson's Punch-Out!!: MTPO Milli Hack and use it with an core of your choice. Mike Tyson's Punch-Out!!: MTPO Milli Hack is compatible with PC, Mac, iOS and Android. RetroSpot is USA #1 choice for Retro Game information for games like Mike Tyson's Punch-Out!!: MTPO Milli Hack.