Routines |
Prev: 7C26 | Up: Map | Next: 7C46 |
This draws both held items.
Used by the routines at pick_up_item, drop_item, accept_bribe, action_red_cross_parcel, action_poison, reset_game and solitary.
|
||||
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 |