1 #ifndef __CORETYPES_H__
2 #define __CORETYPES_H__
3 
4 #include <stdint.h>
5 #include <stdio.h>
6 #include <retro_miscellaneous.h>
7 
8 typedef uint64_t UINT64;
9 #ifndef OSD_CPU_H
10 typedef uint32_t UINT32;
11 typedef uint16_t UINT16;
12 typedef uint8_t UINT8;
13 #endif
14 
15 typedef int64_t INT64;
16 #ifndef OSD_CPU_H
17 typedef int32_t INT32;
18 typedef int16_t INT16;
19 typedef int8_t INT8;
20 #endif
21 
22 #endif
23