7 /* functions and a custom ISR used to handle the keyboard
8 - DOS by itself can only handle one key at a time, so we need to
9 replace the interrupt service routine (ISR) to make it handle more
10 than one key at a time
17 // insert some keyboard codes here as DEFINES (or static chars)
21 volatile char keys[256]; // stores keyboard state
24 _go32_dpmi_seginfo oldKeyboardHandlerSeginfo;
25 _go32_dpmi_seginfo newKeyboardHandlerSeginfo;
30 int attach_keyboard_handler();
31 void detach_keyboard_handler();
33 char keyPressed(unsigned char key);