Prev: 7C26 Up: Map Next: 7C46
7C33: Draw all items
This draws both held items.
draw_all_items 7C33 LD HL,$5087 Point HL at the screen address of item 1
7C36 LD A,($8215) Fetch the first held item
7C39 CALL draw_item Draw the item
7C3C LD HL,$508A Point HL at the screen address of item 2
7C3F LD A,($8216) Fetch the second held item
7C42 CALL draw_item Draw the item
7C45 RET Return
Prev: 7C26 Up: Map Next: 7C46