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

  1. ;ROUTINE FOR STANDARD INPUT WITHOUT ECHO
  2. ;
  3. stdinne       proc far
  4.               mov  ah,8
  5.               int  21h
  6.               ret
  7. stdinne       endp
  8.