;************************************************************************
; CHRCUR.M68 - Character under Cursor SBR
;
; by Dave Heyliger - AMUS Staff
;
; Reads the character under the cursor and returns the character in A$
;
; Example:
;
; PRINT TAB (-1,0); ! clear screen
; PRINT "HELLO" ! HELLO
; PRINT TAB (1,3); ! place cursor at the 1st "L"
; XCALL CHRCUR,A$ ! get the character
; PRINT ! move down a row
; IF A$ = "L" THEN PRINT "Oh Boy!" ! it works!
;
;************************************************************************