os

Toy OS
git clone git://git.margiolis.net/os.git
Log | Files | Refs | README | LICENSE

kbd.h (227B)


      1 #ifndef _KERNEL_KBD_H_
      2 #define _KERNEL_KBD_H_
      3 
      4 #define KBD_PRESSED	0x80
      5 #define KBD_LSHIFT	0x2a
      6 #define KBD_RSHIFT	0x36
      7 #define KBD_LSHIFT_REL	0xaa
      8 #define KBD_RSHIFT_REL	0xb6
      9 
     10 void kbd_init(void);
     11 
     12 #endif /* _KERNEL_KBD_H_ */