Can now load the entire executable, doesn't run
[userspace_emu.git] / xify.h
1 #ifndef _XIFY_H
2 #define _XIFY_H
3
4 #include <stdint.h>
5
6 typedef int16_t x_short;
7 typedef int32_t x_int;
8 typedef int32_t x_long;
9 typedef uint16_t x_u_short;
10 typedef uint32_t x_u_int;
11 typedef uint32_t x_u_long;
12 typedef uint16_t x_unsigned_short;
13 typedef uint32_t x_unsigned_int;
14 typedef uint32_t x_unsigned_long;
15
16 #endif