Prev: 38869 Up: Map Next: 38903
38896: Helper: Copier
Used by the routine at ControlCode_ClearScreen.
Input
HL Target address
BC Count of times to copy
A Value to copy
Helper_Copier 38896 LD D,H Copy HL into DE.
38897 LD E,L
38898 INC DE Increment DE by one.
38899 LD (HL),A Write A to *HL.
38900 LDIR Copy A the number of times set in BC.
38902 RET Return.
Prev: 38869 Up: Map Next: 38903