home *** CD-ROM | disk | FTP | other *** search
/ The Unsorted BBS Collection / thegreatunsorted.tar / thegreatunsorted / programming / asm_programming / ASMFILES.ZIP / COMOUT.ASM < prev    next >
Assembly Source File  |  1985-06-21  |  256b  |  10 lines

  1. ;ROUTINE TO SEND OUTPUT TO A COMMUNICATIONS LINE
  2. ;
  3. comout        proc far
  4. ;
  5.               mov  ah,1
  6.               int  14h
  7.               ret
  8. ;
  9. comout        endp
  10.