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
9FILE_LICENCE ( PUBLIC_DOMAIN );
10FILE_SECBOOT ( PERMITTED );
11
12#include <ipxe/keymap.h>
13
14/** "it" basic remapping */
15static struct keymap_key it_basic[] = {
16 { 0x1e, 0x36 }, /* 0x1e => '6' */
17 { 0x26, 0x2f }, /* '&' => '/' */
18 { 0x28, 0x29 }, /* '(' => ')' */
19 { 0x29, 0x3d }, /* ')' => '=' */
20 { 0x2a, 0x28 }, /* '*' => '(' */
21 { 0x2b, 0x5e }, /* '+' => '^' */
22 { 0x2d, 0x27 }, /* '-' => '\'' */
23 { 0x2f, 0x2d }, /* '/' => '-' */
24 { 0x3c, 0x3b }, /* '<' => ';' */
25 { 0x3e, 0x3a }, /* '>' => ':' */
26 { 0x3f, 0x5f }, /* '?' => '_' */
27 { 0x40, 0x22 }, /* '@' => '"' */
28 { 0x5d, 0x2b }, /* ']' => '+' */
29 { 0x5e, 0x26 }, /* '^' => '&' */
30 { 0x5f, 0x3f }, /* '_' => '?' */
31 { 0x60, 0x5c }, /* '`' => '\\' */
32 { 0x7d, 0x2a }, /* '}' => '*' */
33 { 0x7e, 0x7c }, /* '~' => '|' */
34 { 0xdc, 0x3c }, /* Pseudo-'\\' => '<' */
35 { 0xfc, 0x3e }, /* Pseudo-'|' => '>' */
36 { 0, 0 }
37};
38
39/** "it" AltGr remapping */
40static struct keymap_key it_altgr[] = {
41 { 0x22, 0x23 }, /* '"' => '#' */
42 { 0x23, 0x7e }, /* '#' => '~' */
43 { 0x26, 0x7b }, /* '&' => '{' */
44 { 0x27, 0x23 }, /* '\'' => '#' */
45 { 0x28, 0x5d }, /* '(' => ']' */
46 { 0x29, 0x7d }, /* ')' => '}' */
47 { 0x2a, 0x5b }, /* '*' => '[' */
48 { 0x2d, 0x60 }, /* '-' => '`' */
49 { 0x30, 0x7d }, /* '0' => '}' */
50 { 0x37, 0x7b }, /* '7' => '{' */
51 { 0x38, 0x5b }, /* '8' => '[' */
52 { 0x39, 0x5d }, /* '9' => ']' */
53 { 0x3a, 0x40 }, /* ':' => '@' */
54 { 0x3b, 0x40 }, /* ';' => '@' */
55 { 0x3d, 0x7e }, /* '=' => '~' */
56 { 0x40, 0x7e }, /* '@' => '~' */
57 { 0x51, 0x40 }, /* 'Q' => '@' */
58 { 0x5c, 0x60 }, /* '\\' => '`' */
59 { 0x5f, 0x60 }, /* '_' => '`' */
60 { 0x71, 0x40 }, /* 'q' => '@' */
61 { 0x7c, 0x7e }, /* '|' => '~' */
62 { 0, 0 }
63};
64
65/** "it" keyboard map */
66struct keymap it_keymap __keymap = {
67 .name = "it",
68 .basic = it_basic,
69 .altgr = it_altgr,
70};
#define FILE_LICENCE(_licence)
Declare a particular licence as applying to a file.
Definition compiler.h:896
#define FILE_SECBOOT(_status)
Declare a file's UEFI Secure Boot permission status.
Definition compiler.h:926
Keyboard mappings.
#define __keymap
Define a keyboard mapping.
Definition keymap.h:47
static struct keymap_key it_altgr[]
"it" AltGr remapping
Definition keymap_it.c:40
static struct keymap_key it_basic[]
"it" basic remapping
Definition keymap_it.c:15
A remapped key.
Definition keymap.h:23
A keyboard mapping.
Definition keymap.h:31