mirror of
https://github.com/openhwgroup/cvw
synced 2025-01-24 05:24:49 +00:00
16 lines
448 B
C
16 lines
448 B
C
#ifndef WALLYBOOT
|
|
#define WALLYBOOT 10000
|
|
|
|
#include <stdint.h>
|
|
typedef unsigned int UINT; /* int must be 16-bit or 32-bit */
|
|
typedef unsigned char BYTE; /* char must be 8-bit */
|
|
typedef uint16_t WORD; /* 16-bit unsigned integer */
|
|
typedef uint32_t DWORD; /* 32-bit unsigned integer */
|
|
typedef uint64_t QWORD; /* 64-bit unsigned integer */
|
|
typedef WORD WCHAR;
|
|
|
|
typedef QWORD LBA_t;
|
|
|
|
#endif // WALLYBOOT
|
|
|