1
0
mirror of https://xff.cz/git/u-boot/ synced 2025-09-04 02:02:08 +02:00
Files
u-boot-megous/include/fip_type.h
Ondrej Jirman ba8c26ce40 initial
2019-03-04 15:37:41 +01:00

16 lines
285 B
C
Executable File

#ifndef _FIP_TYPE_H_H_
#define _FIP_TYPE_H_H_
#include<asm/types.h>
//for aa64 BL3-1
typedef u8 uint8_t;
typedef u16 uint16_t;
typedef u32 uint32_t;
typedef u64 uint64_t;
typedef u64 uintptr_t;
typedef u64 size_t;
#endif