home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / Samples / C-ASM_VI.ARJ / PROGC.ZIP / PROGC000.C < prev    next >
Text File  |  1988-06-26  |  207b  |  9 lines

  1.  
  2. get_key()
  3.         {
  4.         union   REGS    regs;
  5.         regs.h.ah = 0;                  /* Get next key from keyboard   */
  6.         int86(0x16, ®s, ®s);
  7.         return(regs.x.ax);
  8.         }
  9.