bringelle/src/utils/8042.h

64 lines
707 B
C
Raw Normal View History

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