mirror of
https://github.com/FunKey-Project/picodrive-irixxxx.git
synced 2026-02-06 23:15:51 +01:00
core, fix type issues by using stdint types
This commit is contained in:
parent
03718e6276
commit
55c3c2b02f
@ -33,12 +33,12 @@ extern "C" {
|
||||
#endif
|
||||
|
||||
|
||||
typedef unsigned char u8;
|
||||
typedef signed char s8;
|
||||
typedef unsigned short u16;
|
||||
typedef signed short s16;
|
||||
typedef unsigned int u32;
|
||||
typedef signed int s32;
|
||||
typedef uint8_t u8;
|
||||
typedef int8_t s8;
|
||||
typedef uint16_t u16;
|
||||
typedef int16_t s16;
|
||||
typedef uint32_t u32;
|
||||
typedef int32_t s32;
|
||||
typedef uintptr_t uptr; // unsigned pointer-sized int
|
||||
|
||||
// ----------------------- 68000 CPU -----------------------
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user