Prev: 9052 Up: Map Next: 90A8
90A3: Update one byte of a moving platform
Used by the routine at 9052.
Input
HL Address to update
C New bits to include
90A3 LD A,C Get the new bits.
90A4 NOP This code is changed to LD A,C ; CPL by the routine at 8F6D, which changes drawing inward to drawing outward.
90A5 OR (HL)
90A6 LD (HL),A Set the new value and return.
90A7 RET
Prev: 9052 Up: Map Next: 90A8