types.h 293 字节
Newer Older
1 2 3 4 5
/*
 * Copyright (C) chinesebear
 */


6 7 8 9 10 11 12 13 14 15 16 17 18
#ifndef __TYPES__H
#define __TYPES__H

typedef unsigned char uint8_t;
typedef unsigned long long  u64;
typedef unsigned int u32;
typedef unsigned short u16;
typedef unsigned char u8;
typedef signed int s32;

typedef u32 dma_addr_t;

#endif	/*__TYPES__H*/