home *** CD-ROM | disk | FTP | other *** search
- CR EQU 13 ;Carriage return
- LF EQU 10 ;Line feed
-
- .MODEL SMALL
- .CODE
-
- PUBLIC SEND_CRLF
- ;-----------------------------------------------------------------------;
- ; This routine just sends a carriage return-line feed pair to the ;
- ; display, using the DOS routines so that scrolling will be handled ;
- ; correctly. ;
- ;-----------------------------------------------------------------------;
- SEND_CRLF PROC
- PUSH AX
- PUSH DX
- MOV AH,2
- MOV DL,CR
- INT 21h
- MOV DL,LF
- INT 21h
- POP DX
- POP AX
- RET
- SEND_CRLF ENDP
-
-
- END