home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / b / bestba.zip / KEY.ASM < prev    next >
Assembly Source File  |  1989-12-25  |  321b  |  13 lines

  1. ;Ce programme attend une frappe clavier et la retourne dans ERRORLEVEL
  2. ;Changer 8 en 7 pour obtenir un écho.
  3. ;Gère les touches fonctions.
  4. ;Permet des programmes batches interactifs. (Menus, choix, validation...)
  5. ;Origine : MICROSOFT
  6.     mov    ah,8
  7.     int    21h
  8.     cmp    al,0
  9.     jnz    suite
  10.     int    21h
  11. suite:    mov    ah,4Ch
  12.     int 21h
  13.