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

  1. ;ROUTINE TO SEND MESSAGE TO STANDARD OUTPUT
  2. ;
  3. stdmessout    proc far
  4.               push si
  5.               push ax
  6. ;
  7. stdmessout1:
  8.               mov  al,[si]
  9.               inc  si
  10.               cmp  al,0
  11.               je   stdmessoutexit
  12.               call stdout
  13.               jmp  stdmessout1
  14. ;
  15. stdmessoutexit:
  16.               pop  ax
  17.               pop  si
  18.               ret
  19. stdmessout    endp
  20.