Prev: 42668 Up: Map Next: 42705
42683: Skip Text Token Based On Type
Input
IX Pointer to text token
Output
IX Updated pointer (skips token data)
SkipTextTokenBasedOnType 42683 LD A,(IX+0) A=*IX+0.
42686 BIT 7,A Jump to SkipTextTokenBasedOnType_1 if bit 7 of A is set.
42688 JR NZ,SkipTextTokenBasedOnType_1
42690 CP 2 Jump to SkipTextTokenBasedOnType_0 if A is equal to 2.
42692 JR Z,SkipTextTokenBasedOnType_0
42694 CP 11 Jump to SkipTextTokenBasedOnType_2 if A is not equal to 11.
42696 JR NZ,SkipTextTokenBasedOnType_2
SkipTextTokenBasedOnType_0 42698 INC IX Increment IX by one.
SkipTextTokenBasedOnType_1 42700 INC IX Increment IX by one.
SkipTextTokenBasedOnType_2 42702 INC IX Increment IX by one.
42704 RET Return.
Prev: 42668 Up: Map Next: 42705