Up: Map Next: 50AA
50A0: Clear character buffer 0xD6
Used by the routine at 53B1. Clearing character buffer 0xD6 serves no useful purpose; it is not used until the game has started, and is properly initialised before then anyway.
Input
C 0x00
50A0 LD HL,$D600 Fill character buffer 0xD6 with zeroes
50A3 LD B,$20
50A5 LD (HL),C
50A6 INC L
50A7 DJNZ $50A5
50A9 RET
Up: Map Next: 50AA