Prev: CA5B Up: Map Next: CB9C
CB8D: Turn a flashing option on the intro screen off
Used by the routine at CA5B.
Input
A The row to flash
CB8D LD E,A Put the row to flash in E.
CB8E LD D,$0A The column is always 0A.
CB90 CALL $E8E3 Convert this to an attribute address and put it in HL.
CB93 EX DE,HL
CB94 LD B,$0A Loop for 0A columns.
CB96 RES 7,(HL) Switch the flash attribute off.
CB98 INC L Move to the next column.
CB99 DJNZ $CB96 Loop until all columns are done.
CB9B RET
Prev: CA5B Up: Map Next: CB9C