Get rid of the double FatFs

This commit is contained in:
Aurora
2016-05-03 03:05:11 +02:00
parent fef48a449a
commit 905f816bbe
25 changed files with 49 additions and 7382 deletions

13
loader/source/types.h Normal file
View File

@@ -0,0 +1,13 @@
#pragma once
#include <stdint.h>
//Common data types
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef volatile u8 vu8;
typedef volatile u16 vu16;
typedef volatile u32 vu32;
typedef volatile u64 vu64;