Prev: A9AD Up: Map Next: AA05
A9E4: Shunt map left
This moves the map left.
Used by the routine at move_map.
shunt_map_left A9E4 LD HL,$81BB Move the map position to the left
A9E7 INC (HL)
A9E8 CALL get_supertiles Update the supertiles in map_buf
A9EB LD HL,$F0F9 Shunt the tile_buf back by one byte
A9EE LD DE,$F0F8
A9F1 LD BC,$0197
A9F4 LDIR
A9F6 LD HL,$F291 Shunt the window_buf back by one byte
A9F9 LD DE,$F290
A9FC LD BC,$0CBF
A9FF LDIR
AA01 CALL plot_rightmost_tiles Plot the complete rightmost column of tiles
AA04 RET Return
Prev: A9AD Up: Map Next: AA05