Prev: A3BB Up: Map Next: A3F3
A3ED: Store route
This stores the route in (A',C) at HL.
Used by the routine at set_character_route.
Input
A' Route index.
C Route step.
HL Pointer to route.
Output
HL Pointer to route.step.
store_route A3ED EX AF,AF' Unbank the route index
A3EE LD (HL),A Store the route index
A3EF EX AF,AF' Bank the route index
A3F0 INC HL Store the route step
A3F1 LD (HL),C
A3F2 RET Return
Prev: A3BB Up: Map Next: A3F3