Initial commit.

This commit is contained in:
nwert
2018-03-07 14:11:46 +13:00
commit 6f6683e05b
26 changed files with 4159 additions and 0 deletions

9
hwinit/types.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef _TYPES_H_
#define _TYPES_H_
typedef unsigned char u8;
typedef unsigned short u16;
typedef unsigned int u32;
typedef volatile unsigned int vu32;
#endif