Prev: A24D Up: Map Next: A277
A25D: Routine at A25D
Used by the routine at A277.
A25D PUSH BC Stash BC on the stack.
A25E LD B,A B=A.
A25F LD A,($A011) Jump to A275 if *A011 is zero.
A262 AND A
A263 JR Z,$A275
A265 LD HL,($A0D8) HL=*A0D8.
A268 LD A,H Jump to A275 if HL is zero.
A269 OR L
A26A JR Z,$A275
A26C PUSH HL IX=HL (using the stack).
A26D POP IX
A26F LD A,B A=B.
A270 CALL SearchThreeByteTable Call SearchThreeByteTable.
A273 CP $FF Set the zero flag if the termination character was reached (FF).
A275 POP BC Restore BC from the stack.
A276 RET Return.
Prev: A24D Up: Map Next: A277