Prev: 29112 Up: Map Next: 29126
29119: Reset Routine
Used by the routine at ResetAttributes.
Input
HL Target address
B Single byte representing the MSB of the end address (will always end on LSB 0)
C Value to write
ResetCopier 29119 LD (HL),C Write C to the target address.
29120 INC HL Increment the target address by one.
29121 LD A,H Are we finished yet? Check the MSB of the target vs. B.
29122 CP B
29123 JR C,ResetCopier Keep looping back to ResetCopier until there is no carry-over.
29125 RET Return.
View the equivalent code in;
Prev: 29112 Up: Map Next: 29126