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

  1. ;ROUTINE FOR STANDARD OUTPUT
  2. ;
  3. stdout        proc far
  4.               push dx
  5.               mov  dl,al
  6.               mov  ah,2
  7.               int  21h
  8.               pop  dx
  9.               ret
  10. stdout        endp
  11.