From 65409d2312e702a48d3cf5b32479d25266bda3c3 Mon Sep 17 00:00:00 2001 From: Kartik Agaram Date: Wed, 1 Jan 2020 18:22:19 -0800 Subject: 5858 Move script to create a Soso boot image into a sub-directory. I'm trying to streamline newcomer attention to just a couple of use cases. --- kernel.soso/fatfs_integer.h | 39 --------------------------------------- 1 file changed, 39 deletions(-) delete mode 100644 kernel.soso/fatfs_integer.h (limited to 'kernel.soso/fatfs_integer.h') diff --git a/kernel.soso/fatfs_integer.h b/kernel.soso/fatfs_integer.h deleted file mode 100644 index 7d00a07e..00000000 --- a/kernel.soso/fatfs_integer.h +++ /dev/null @@ -1,39 +0,0 @@ -/*-------------------------------------------*/ -/* Integer type definitions for FatFs module */ -/*-------------------------------------------*/ - -#ifndef FF_INTEGER -#define FF_INTEGER - -#undef _WIN32 -#ifdef _WIN32 /* FatFs development platform */ - -#include -#include -typedef unsigned __int64 QWORD; - - -#else /* Embedded platform */ - -/* These types MUST be 16-bit or 32-bit */ -typedef int INT; -typedef unsigned int UINT; - -/* This type MUST be 8-bit */ -typedef unsigned char BYTE; - -/* These types MUST be 16-bit */ -typedef short SHORT; -typedef unsigned short WORD; -typedef unsigned short WCHAR; - -/* These types MUST be 32-bit */ -typedef long LONG; -typedef unsigned long DWORD; - -/* This type MUST be 64-bit (Remove this for ANSI C (C89) compatibility) */ -typedef unsigned long long QWORD; - -#endif - -#endif -- cgit 1.4.1-2-gfad0 u/blame/snapshot_lesson?h=main&id=2a13be5fd73877cc73c0c50ccd3ab7fadb41a682'>blame commit diff stats
blob: cd4723c1555c73e44d5ce378e706529131614f47 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12