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

  1. ;ROUTINE TO CHECK FOR STANDARD INPUT
  2. ;
  3. stdinck       proc far
  4.               push dx
  5.               mov  dl,0FFh
  6.               mov  ah,06h
  7.               int  21h
  8.               pop  dx
  9.               ret
  10. stdinck       endp
  11.