home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / archives / packetdrivers.tar.gz / pd.tar / src / crlf.asm < prev    next >
Assembly Source File  |  1995-06-25  |  192b  |  16 lines

  1. ;put into the public domain by Russell Nelson, nelson@clutx.clarkson.edu
  2.  
  3.     public    crlf
  4. crlf:
  5.     push    ax
  6.     push    dx
  7.     mov    dl,13
  8.     mov    ah,2
  9.     int    21h
  10.     mov    dl,10
  11.     mov    ah,2
  12.     int    21h
  13.     pop    dx
  14.     pop    ax
  15.     ret
  16.