From 0d0f4f1d23851c0c34e518834f7d316e61dec1f3 Mon Sep 17 00:00:00 2001 From: gbc dev Date: Sat, 4 Jul 2026 22:05:31 +0200 Subject: scaffolding: build system, cartridge loader with MBC1/2/3/5, core types --- src/types.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 src/types.h (limited to 'src/types.h') diff --git a/src/types.h b/src/types.h new file mode 100644 index 0000000..ceed8a0 --- /dev/null +++ b/src/types.h @@ -0,0 +1,16 @@ +#ifndef GBC_TYPES_H +#define GBC_TYPES_H + +#include +#include +#include + +typedef uint8_t u8; +typedef uint16_t u16; +typedef uint32_t u32; +typedef uint64_t u64; +typedef int8_t s8; +typedef int16_t s16; +typedef int32_t s32; + +#endif -- cgit v1.3.1-sl0p