#ifndef _8042_H #define _8042_H #include "types.h" void _8042_keypress(); #define DEFINE_AZERTY char AZERTY[]={\ '?',\ '?',\ '?',\ '?',\ '?',\ '?',\ '?',\ '?',\ '?',\ '?',/* 10 */\ '?',\ '?',\ '?',\ '?',\ '?',\ '?',\ 'a',\ 'z',\ 'e',\ 'r',\ 't',\ 'y',\ 'u',\ 'i',\ 'o',\ 'p',\ '^',\ '$',\ '?',\ '?',\ 'q',/* 0x1E (30) */\ 's',\ 'd',\ 'f',\ 'g',\ 'h',\ 'j',\ 'k',\ 'l',\ 'm',\ '?',\ '?',\ '?',\ '*',\ 'w',\ 'x',\ 'c',\ 'v',\ 'b',/* 0x30 (48) */\ 'n',\ ',',\ ';',\ ':',\ } #endif