1e4 TITLE setcur.ASM ;====== External Procedure ;====== positions the cursor ;------------------------------------------------------------------------- CSEG SEGMENT PUBLIC ASSUME CS:CSEG,DS:CSEG PUBLIC setcur setcur PROC NEAR mov ah,0fh ;Get Video State int 10h mov ah,02h ;Set cursor int 10h ret setcur ENDP CSEG ENDS END . 0