home *** CD-ROM | disk | FTP | other *** search
/ Programming Languages Suite / ProgLangD.iso / Assembly / CURSOR14.ASM < prev    next >
Assembly Source File  |  1986-09-23  |  621b  |  31 lines

  1. CR        EQU    13        ;Carriage return
  2. LF        EQU    10        ;Line feed
  3.  
  4. CGROUP    GROUP    CODE_SEG
  5.     ASSUME    CS:CGROUP
  6.  
  7. CODE_SEG    SEGMENT PUBLIC
  8.  
  9.     PUBLIC    SEND_CRLF
  10. ;-----------------------------------------------------------------------;
  11. ; This routine just sends a carriage return-line feed pair to the    ;
  12. ; display, using the DOS routines so that scrolling will be handled    ;
  13. ; correctly.                                ;
  14. ;-----------------------------------------------------------------------;
  15. SEND_CRLF    PROC    NEAR
  16.     PUSH    AX
  17.     PUSH    DX
  18.     MOV    AH,2
  19.     MOV    DL,CR
  20.     INT    21h
  21.     MOV    DL,LF
  22.     INT    21h
  23.     POP    DX
  24.     POP    AX
  25.     RET
  26. SEND_CRLF    ENDP
  27.  
  28. CODE_SEG    ENDS
  29.  
  30.     END
  31.