Prev: 62339 Up: Map Next: 62380
62363: Remove User Input Token 1
Some commands like "GO" and "SWIM" are just treated like aliases, where the second token (the direction) is shunted down to being the first token, and the second token is then just erased. Hence, using "GO NORTH" is just the same as typing "NORTH".
RemoveUserInput_Token_1 62363 LD IX,43044 Load UserInput_Token_1 into IX.
62367 LD A,(IX+1) Fetch *IX+1 (UserInput_Token_2) and write it to UserInput_Token_1.
62370 LD (IX+0),A
62373 LD (IX+1),255 Write a termination character (255) to UserInput_Token_2.
62377 JP 45150 Jump to 45150.
Prev: 62339 Up: Map Next: 62380