Prev: A450 Up: Map Next: A467
A459: Is Character A Delimiter
Used by the routine at Handler_UserInput.
Output
F The zero flag is set if a delimiter is found
IsDelimiter A459 PUSH HL Stash HL and BC on the stack.
A45A PUSH BC
A45B LD HL,$9DCE HL=Table_Delimiters_Count.
A45E LD C,(HL) Fetch the delimiter count and store it in BC.
A45F LD B,$00
A461 INC HL Move HL to point to the delimiter table.
A462 CPIR Search for matching delimiters.
A464 POP BC Restore BC and HL from the stack.
A465 POP HL
A466 RET Return.
Prev: A450 Up: Map Next: A467