get_key() { union REGS regs; regs.h.ah = 0; /* Get next key from keyboard */ int86(0x16, ®s, ®s); return(regs.x.ax); }