diff options
Diffstat (limited to 'src/int/8042.h')
| -rw-r--r-- | src/int/8042.h | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/src/int/8042.h b/src/int/8042.h new file mode 100644 index 0000000..e35e5a0 --- /dev/null +++ b/src/int/8042.h @@ -0,0 +1,64 @@ +#ifndef _8042_H +#define _8042_H + +#include "utils/types.h" + +void _8042_keypress(); + +#define DEFINE_AZERTY char AZERTY[]={\ + '\0',\ + '\0',\ + '&',\ + '\0',\ + '"',\ + '\'',\ + '(',\ + '-',\ + '\0',\ + '_',/* 10 */\ + '\0',\ + '\0',\ + ')',\ + '=',\ + '\0',\ + '\t',\ + 'a',\ + 'z',\ + 'e',\ + 'r',\ + 't',\ + 'y',\ + 'u',\ + 'i',\ + 'o',\ + 'p',\ + '^',\ + '$',\ + '\0',\ + '\0',\ + 'q',/* 0x1E (30) */\ + 's',\ + 'd',\ + 'f',\ + 'g',\ + 'h',\ + 'j',\ + 'k',\ + 'l',\ + 'm',\ + '\0',\ + '\0',\ + '\0',\ + '*',\ + 'w',\ + 'x',\ + 'c',\ + 'v',\ + 'b',/* 0x30 (48) */\ + 'n',\ + ',',\ + ';',\ + ':',\ +} + +#endif
\ No newline at end of file |
