home *** CD-ROM | disk | FTP | other *** search
- ;
- ; *****************************************************************************
- ; * N O N - F L A S H I N G U N D E R L I N E C U R S O R -- Z R T - 8 0 *
- ; *****************************************************************************
- ;
- ; If you wish to modify this program, substitute
- ; the codes for your terminal in label STR:
- ;
- ;
- ESC EQU 27 ; ESCape character
- ;
- ORG 100H ; Standard origin
- ;
- UNDER:
- LD C,9 ; Load "Print String" function code
- LD DE,STR ; Load string to be executed
- CALL 5 ; Execute "Print String" code
- RET ; Return to ZCPRxx-CP/M
- ;
- STR: ; *** Command String ***
- DEFB ESC,'y','5' ; Enable cursor
- DEFB ESC,'y','0' ; Blinking cursor
- DEFB ESC,'y','4' ; Underscore
- DEFB ESC,'q' ; Amber on Black screen
- DEFB '$' ; *** End of Print String ***
- ;
- END UNDER ; Entry point