Prev: 63624 Up: Map Next: 63680
63663: Bomb Timer
Used by the routine at SoundGenerator_WhiteNoise.
Output
A A random byte value taken from the ZX Spectrum ROM
BombTimer 63663 LD HL,(65158) HL=*BombHelper.
63666 INC HL Increment HL by one.
63667 LD A,H Jump to BombTimer_Update if H is not equal to 32.
63668 CP 32
63670 JR NZ,BombTimer_Update
63672 LD HL,0 Reset HL back to 0000.
BombTimer_Update 63675 LD (65158),HL Write HL to *BombHelper.
63678 LD A,(HL) A=*HL.
63679 RET Return.
Prev: 63624 Up: Map Next: 63680