home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / asm_kit / stdcrlf.asm < prev    next >
Assembly Source File  |  1985-06-21  |  384b  |  14 lines

  1. ;ROUTINE TO SEND CR LF TO STANDARD OUTPUT
  2. ;
  3. stdcrlf       proc far
  4.               push ax
  5. ;
  6.               mov  al,13
  7.               call stdout
  8.               mov  al,10
  9.               call stdout
  10. ;
  11.               pop  ax
  12.               ret
  13. stdcrlf       endp
  14.