home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD1.mdf / assemblr / library / bluebook / asm-subr / key_chk < prev    next >
Encoding:
Text File  |  1986-01-01  |  256 b   |  7 lines

  1. keychk:
  2.     mov    ah,0Bh
  3.     int    21h        ; key test function
  4.     cmp    al,0FFh        ; has it been key'd ?
  5.     je    main4        ; all done
  6.     jmp    keychk        ; no key ... try again
  7.