home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / MAGAZINE / MISC / PJ_9_6.ZIP / ALIB.ZIP / PUTCH_NL.ASM < prev    next >
Encoding:
Assembly Source File  |  1991-06-25  |  187 b   |  18 lines

  1.     include    asm.inc
  2.  
  3.     public    putchar_newline
  4.  
  5.     .code
  6.     extn    putchar
  7.  
  8. ;;    putchar newline
  9. ;
  10. ;    uses    AX
  11. ;
  12. putchar_newline proc
  13.     mov    al,10
  14.     jmp    putchar
  15. putchar_newline endp
  16.  
  17.     end
  18.