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

  1. ; read keyboard
  2.     mov    ah,8        ; rd_kbd function call
  3.     int    21h        ; function call
  4.     cmp    al,'q'        ; is it quittin' time ?
  5.     jnz    newcolor
  6.     jmp    depart        ; exit pgm if match
  7. ;
  8.