03-06-2014, 11:46 AM
Shock and Health are connected in their code. The Shock command will use a piece of the Health command. May it be the issue?
Also, there is something wrong with this line with the new Mantra code:
BEQ $4278 should be “F0 03” instead of “F0 01”. However, C2/4278 is in the middle of the opcode and should freeze/break the game. For the “F0 01” opcode it should be BEQ $4276.
Code:
Shock
C2/171A A9 82 LDA #$82
C2/171C 80 02 BRA $1720
Health
C2/171E A9 2E LDA #$2E
C2/1720 85 B6 STA $B6
C2/1722 A9 05 LDA #$05
C2/1724 80 3F BRA $1765
Also, there is something wrong with this line with the new Mantra code:
Code:
C2/4273 F0 01 BEQ $4278
BEQ $4278 should be “F0 03” instead of “F0 01”. However, C2/4278 is in the middle of the opcode and should freeze/break the game. For the “F0 01” opcode it should be BEQ $4276.