-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomp.h
More file actions
22 lines (20 loc) · 774 Bytes
/
Copy pathcomp.h
File metadata and controls
22 lines (20 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// This is free and unencumbered software released into the public domain.
// For more information, see LICENSE.
static const v4 sym_table[] = {
[0x00] = {0x00, 0x00, 0x00, 0x00},
[0x01] = {0xff, 0x00, 0x00, 0x00},
[0x02] = {0x00, 0xff, 0x00, 0x00},
[0x03] = {0xff, 0xff, 0x00, 0x00},
[0x04] = {0x00, 0x00, 0xff, 0x00},
[0x05] = {0xff, 0x00, 0xff, 0x00},
[0x06] = {0x00, 0xff, 0xff, 0x00},
[0x07] = {0xff, 0xff, 0xff, 0x00},
[0x08] = {0x00, 0x00, 0x00, 0xff},
[0x09] = {0xff, 0x00, 0x00, 0xff},
[0x0a] = {0x00, 0xff, 0x00, 0xff},
[0x0b] = {0xff, 0xff, 0x00, 0xff},
[0x0c] = {0x00, 0x00, 0xff, 0xff},
[0x0d] = {0xff, 0x00, 0xff, 0xff},
[0x0e] = {0x00, 0xff, 0xff, 0xff},
[0x0f] = {0xff, 0xff, 0xff, 0xff},
};