iPXE
keymap_it.c
Go to the documentation of this file.
1 /** @file
2  *
3  * "it" keyboard mapping
4  *
5  * This file is automatically generated; do not edit
6  *
7  */
8 
9 FILE_LICENCE ( PUBLIC_DOMAIN );
10 
11 #include <ipxe/keymap.h>
12 
13 /** "it" basic remapping */
14 static struct keymap_key it_basic[] = {
15  { 0x1e, 0x36 }, /* 0x1e => '6' */
16  { 0x26, 0x2f }, /* '&' => '/' */
17  { 0x28, 0x29 }, /* '(' => ')' */
18  { 0x29, 0x3d }, /* ')' => '=' */
19  { 0x2a, 0x28 }, /* '*' => '(' */
20  { 0x2b, 0x5e }, /* '+' => '^' */
21  { 0x2d, 0x27 }, /* '-' => '\'' */
22  { 0x2f, 0x2d }, /* '/' => '-' */
23  { 0x3c, 0x3b }, /* '<' => ';' */
24  { 0x3e, 0x3a }, /* '>' => ':' */
25  { 0x3f, 0x5f }, /* '?' => '_' */
26  { 0x40, 0x22 }, /* '@' => '"' */
27  { 0x5d, 0x2b }, /* ']' => '+' */
28  { 0x5e, 0x26 }, /* '^' => '&' */
29  { 0x5f, 0x3f }, /* '_' => '?' */
30  { 0x60, 0x5c }, /* '`' => '\\' */
31  { 0x7d, 0x2a }, /* '}' => '*' */
32  { 0x7e, 0x7c }, /* '~' => '|' */
33  { 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
34  { 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
35  { 0, 0 }
36 };
37 
38 /** "it" AltGr remapping */
39 static struct keymap_key it_altgr[] = {
40  { 0x22, 0x23 }, /* '"' => '#' */
41  { 0x23, 0x7e }, /* '#' => '~' */
42  { 0x26, 0x7b }, /* '&' => '{' */
43  { 0x27, 0x23 }, /* '\'' => '#' */
44  { 0x28, 0x5d }, /* '(' => ']' */
45  { 0x29, 0x7d }, /* ')' => '}' */
46  { 0x2a, 0x5b }, /* '*' => '[' */
47  { 0x2d, 0x60 }, /* '-' => '`' */
48  { 0x30, 0x7d }, /* '0' => '}' */
49  { 0x37, 0x7b }, /* '7' => '{' */
50  { 0x38, 0x5b }, /* '8' => '[' */
51  { 0x39, 0x5d }, /* '9' => ']' */
52  { 0x3a, 0x40 }, /* ':' => '@' */
53  { 0x3b, 0x40 }, /* ';' => '@' */
54  { 0x3d, 0x7e }, /* '=' => '~' */
55  { 0x40, 0x7e }, /* '@' => '~' */
56  { 0x51, 0x40 }, /* 'Q' => '@' */
57  { 0x5c, 0x60 }, /* '\\' => '`' */
58  { 0x5f, 0x60 }, /* '_' => '`' */
59  { 0x71, 0x40 }, /* 'q' => '@' */
60  { 0x7c, 0x7e }, /* '|' => '~' */
61  { 0, 0 }
62 };
63 
64 /** "it" keyboard map */
65 struct keymap it_keymap __keymap = {
66  .name = "it",
67  .basic = it_basic,
68  .altgr = it_altgr,
69 };
Keyboard mappings.
A remapped key.
Definition: keymap.h:22
struct keymap it_keymap __keymap
"it" keyboard map
Definition: keymap_it.c:65
const char * name
Name.
Definition: keymap.h:32
static struct keymap_key it_basic[]
"it" basic remapping
Definition: keymap_it.c:14
A keyboard mapping.
Definition: keymap.h:30
FILE_LICENCE(PUBLIC_DOMAIN)
static struct keymap_key it_altgr[]
"it" AltGr remapping
Definition: keymap_it.c:39