Prev: 122B Up: Map Next: 1257
1243: display_header_row: Decode and display the header row.
display_header_row 1243 PUSH HL Preserve registers.
1244 PUSH AF
1245 LD A,(bright_attr) Add 7 (white ink) to bright_attr and store the result in colour_attr.
1248 ADD A,$07
124A LD (colour_attr),A
124D XOR A Set row_number to 0.
124E LD (row_number),A
1251 CALL force_decode_row Decode and display row_number.
1254 POP AF Restore registers and return.
1255 POP HL
1256 RET
Prev: 122B Up: Map Next: 1257