]> cloudbase.mooo.com Git - z180-stamp.git/blame - include/integer.h
Handle bus errors in md command
[z180-stamp.git] / include / integer.h
CommitLineData
53668523
L
1/*-------------------------------------------*/\r
2/* Integer type definitions for FatFs module */\r
3/*-------------------------------------------*/\r
4\r
5#ifndef _FF_INTEGER\r
6#define _FF_INTEGER\r
7\r
7f552300 8#include <stdint.h>\r
53668523
L
9\r
10/* This type MUST be 8 bit */\r
7f552300 11typedef uint8_t BYTE;\r
53668523
L
12\r
13/* These types MUST be 16 bit */\r
7f552300
L
14typedef int16_t SHORT;\r
15typedef uint16_t WORD;\r
16typedef uint16_t WCHAR;\r
53668523
L
17\r
18/* These types MUST be 16 bit or 32 bit */\r
7f552300 19typedef int INT;\r
53668523
L
20typedef unsigned int UINT;\r
21\r
22/* These types MUST be 32 bit */\r
7f552300
L
23typedef int32_t LONG;\r
24typedef uint32_t DWORD;\r
53668523
L
25\r
26#endif\r