Initial commit.

This commit is contained in:
Steveice10
2015-01-22 22:06:24 -08:00
commit 78ee395ea5
11 changed files with 8109 additions and 0 deletions

11
source/types.h Normal file
View File

@@ -0,0 +1,11 @@
#ifndef __TYPES_H__
#define __TYPES_H__
#include <stdint.h>
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
#endif