Prev: 9052 Up: Map Next: 90A2
908B: Copy Sub-Game Data
Used by the routine at Initialise_SubGame.
CopySubGameData 908B LD IX,($EFF2) IX=*Pointer_ActivePlayer.
908F LD L,(IX+$08) Fetch the players current location and store it in HL.
9092 LD H,(IX+$09)
9095 LD A,(HL) Store a pointer to the current locations game data in HL.
9096 INC HL
9097 LD H,(HL)
9098 LD L,A
9099 LD DE,$99C4 Copy 002F bytes from *HL to *ActiveSubGameData.
909C LD BC,$002F
909F LDIR
90A1 RET Return.
Prev: 9052 Up: Map Next: 90A2