Prev: 04103 Up: Map Next: 04117
04108: THE 'CURSOR RIGHT EDITING' SUBROUTINE
The address of this routine is derived from an offset found in the editing keys table.
Input
HL Address of the cursor (K-CUR)
ED_RIGHT 04108 LD A,(HL) The current character is tested and if it is 'carriage return' then return.
04109 CP 13
04111 RET Z
04112 INC HL Otherwise make the cursor come after the character.
This entry point is used by the routine at ED_LEFT.
ED_CUR 04113 LD (23643),HL Set the system variable K-CUR.
04116 RET
Prev: 04103 Up: Map Next: 04117