Prev: 10173 Up: Map Next: 10418
10411: THE 'FUNCTION SKIPOVER' SUBROUTINE
This subroutine is used by S_FN_SBRN and by STK_F_ARG to move HL along the DEF FN statement while leaving CH-ADD undisturbed, as it points along the FN statement.
Input
HL Address of the current character
Output
A Code of next non-control, non-space character
HL Address of that character
FN_SKPOVR 10411 INC HL Point to the next code in the statement.
10412 LD A,(HL) Copy the code to A.
10413 CP 33 Jump back to skip over it if it is a control code or a space.
10415 JR C,FN_SKPOVR
10417 RET Finished.
Prev: 10173 Up: Map Next: 10418