iPXE
Main Page
Related Pages
Modules
+
Data Structures
Data Structures
Data Structure Index
+
Data Fields
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
b
d
i
p
s
t
u
v
x
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Enumerator
+
Files
File List
+
Globals
+
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
+
Typedefs
_
a
b
c
d
e
f
g
h
i
l
m
n
o
p
r
s
t
u
v
w
x
+
Enumerations
_
a
b
c
d
e
f
g
h
i
j
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Enumerator
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
+
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
hci
keymap
keymap_al.c
Go to the documentation of this file.
1
/** @file
2
*
3
* "al" 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
/** "al" basic remapping */
14
static
struct
keymap_key
al_basic
[] = {
15
{ 0x19, 0x1a },
/* Ctrl-Y => Ctrl-Z */
16
{ 0x1a, 0x19 },
/* Ctrl-Z => Ctrl-Y */
17
{ 0x1c, 0x1d },
/* 0x1c => 0x1d */
18
{ 0x22, 0x7b },
/* '"' => '{' */
19
{ 0x27, 0x5b },
/* '\'' => '[' */
20
{ 0x3c, 0x3b },
/* '<' => ';' */
21
{ 0x3e, 0x3a },
/* '>' => ':' */
22
{ 0x40, 0x22 },
/* '@' => '"' */
23
{ 0x59, 0x5a },
/* 'Y' => 'Z' */
24
{ 0x5a, 0x59 },
/* 'Z' => 'Y' */
25
{ 0x5c, 0x5d },
/* '\\' => ']' */
26
{ 0x5d, 0x40 },
/* ']' => '@' */
27
{ 0x60, 0x5c },
/* '`' => '\\' */
28
{ 0x79, 0x7a },
/* 'y' => 'z' */
29
{ 0x7a, 0x79 },
/* 'z' => 'y' */
30
{ 0x7c, 0x7d },
/* '|' => '}' */
31
{ 0x7d, 0x27 },
/* '}' => '\'' */
32
{ 0x7e, 0x7c },
/* '~' => '|' */
33
{ 0xdc, 0x3c },
/* Pseudo-'\\' => '<' */
34
{ 0xfc, 0x3e },
/* Pseudo-'|' => '>' */
35
{ 0, 0 }
36
};
37
38
/** "al" AltGr remapping */
39
static
struct
keymap_key
al_altgr
[] = {
40
{ 0x21, 0x7e },
/* '!' => '~' */
41
{ 0x26, 0x60 },
/* '&' => '`' */
42
{ 0x29, 0x7e },
/* ')' => '~' */
43
{ 0x30, 0x7e },
/* '0' => '~' */
44
{ 0x31, 0x7e },
/* '1' => '~' */
45
{ 0x34, 0x7e },
/* '4' => '~' */
46
{ 0x37, 0x60 },
/* '7' => '`' */
47
{ 0x3a, 0x7e },
/* ':' => '~' */
48
{ 0x56, 0x60 },
/* 'V' => '`' */
49
{ 0x7c, 0x7e },
/* '|' => '~' */
50
{ 0, 0 }
51
};
52
53
/** "al" keyboard map */
54
struct
keymap
al_keymap
__keymap
= {
55
.
name
=
"al"
,
56
.basic =
al_basic
,
57
.altgr =
al_altgr
,
58
};
keymap.h
Keyboard mappings.
al_altgr
static struct keymap_key al_altgr[]
"al" AltGr remapping
Definition:
keymap_al.c:39
keymap_key
A remapped key.
Definition:
keymap.h:22
FILE_LICENCE
FILE_LICENCE(PUBLIC_DOMAIN)
al_basic
static struct keymap_key al_basic[]
"al" basic remapping
Definition:
keymap_al.c:14
keymap::name
const char * name
Name.
Definition:
keymap.h:32
__keymap
struct keymap al_keymap __keymap
"al" keyboard map
Definition:
keymap_al.c:54
keymap
A keyboard mapping.
Definition:
keymap.h:30
Generated by
1.8.15