Routines |
Prev: DC41 | Up: Map | Next: DC53 |
Used by the routine at DBF5.
|
||||||||||
Draws graphic bytes on screen, combining with any existing screen background bytes
|
||||||||||
DC4C | LD A,D | Get first graphic byte | ||||||||
DC4D | OR (HL) | OR with existing screen byte, preserve any background graphics | ||||||||
DC4E | LD (HL),A | ...and draw back on screen. | ||||||||
DC4F | INC HL | Move right one character square | ||||||||
DC50 | LD A,E | Get second graphic byte | ||||||||
DC51 | OR (HL) | OR with existing graphic byte on screen | ||||||||
DC52 | LD (HL),A | ...and draw back on screen. |
Prev: DC41 | Up: Map | Next: DC53 |