Prev: CD92 Up: Map Next: CDB8
CDAA: fill INBUF with $FF00
Used by the routines at EN_AN, routine56, routine59, routine60, routine64 and routine66.
fill_inbuf CDAA LD HL,INBUF set HL to address of INBUF
CDAD LD B,$9E set loop counter to $9E
fill_inbuf_0 CDAF LD (HL),$00 store $FF00 at address in HL
CDB1 INC HL
CDB2 LD (HL),$FF
CDB4 INC HL
CDB5 DJNZ fill_inbuf_0 loop back to fill_inbuf_0 for 158 iterations and return.
CDB7 RET
Prev: CD92 Up: Map Next: CDB8