]> git.buserror.net Git - polintos/scott/priv.git/blob - idlcomp/targets.cc
Initial checkin from Perforce.
[polintos/scott/priv.git] / idlcomp / targets.cc
1 #include <targets.h>
2
3 Target *target = &targets[0];
4
5 Target targets[] = {
6         // dummy
7         {
8                 "none"
9         },
10         
11         // x86
12         {
13                 "x86",
14                 pointer_size: 4,
15                 big_endian: false,
16                 bitfield_big_endian: false
17         },
18         
19         // x64
20         {
21                 "x64",
22                 pointer_size: 8,
23                 big_endian: false,
24                 bitfield_big_endian: false
25         },
26
27         // ppc
28         {
29                 "ppc",
30                 pointer_size: 4,
31                 big_endian: true,
32                 bitfield_big_endian: true
33         },
34 };