core, fix type issues by using stdint types

This commit is contained in:
kub 2020-07-10 09:09:52 +02:00
parent 03718e6276
commit 55c3c2b02f

View file

@ -33,12 +33,12 @@ extern "C" {
#endif #endif
typedef unsigned char u8; typedef uint8_t u8;
typedef signed char s8; typedef int8_t s8;
typedef unsigned short u16; typedef uint16_t u16;
typedef signed short s16; typedef int16_t s16;
typedef unsigned int u32; typedef uint32_t u32;
typedef signed int s32; typedef int32_t s32;
typedef uintptr_t uptr; // unsigned pointer-sized int typedef uintptr_t uptr; // unsigned pointer-sized int
// ----------------------- 68000 CPU ----------------------- // ----------------------- 68000 CPU -----------------------