From 0532e04a9e273f2a9033a28cdbce1030a91c5bb4 Mon Sep 17 00:00:00 2001 From: Daniel Hader Date: Sun, 23 Aug 2026 20:25:36 -0500 Subject: initial commit working tile demo --- source/types.hpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 source/types.hpp (limited to 'source/types.hpp') diff --git a/source/types.hpp b/source/types.hpp new file mode 100644 index 0000000..222b11c --- /dev/null +++ b/source/types.hpp @@ -0,0 +1,18 @@ +#ifndef TYPES_HPP +#define TYPES_HPP + +typedef signed char s8; +typedef signed short s16; +typedef signed int s32; + +typedef unsigned char u8; +typedef unsigned short u16; +typedef unsigned int u32; + +typedef volatile unsigned char vu8; +typedef volatile unsigned short vu16; +typedef volatile unsigned int vu32; + +typedef u16 color_t; + +#endif -- cgit v1.2.3