common_var_types.h

来自「realview下的一个arm9的bootloader烧录器.支持norflas」· C头文件 代码 · 共 54 行

H
54
字号
/******************************************************************************* * Copyright Statement: * -------------------- * This software is protected by Copyright and the information contained herein * is confidential.  The software may not be copied and the information * contained herein may not be used or disclosed except with the written * permission of Infomax Corp. * * MODULE NAME:   * DESCRIPTION:   * AUTHOR:        * BEGIN DATE:          * LAST MODIFICATION:  *****************************************************************************/ #ifndef COMMON_VAR_TYPES_H#define COMMON_VAR_TYPES_H/* Header files *//* Constant/Marco */#define INT8  signed char#define INT16 signed short#define INT32 signed int#define UINT8  unsigned char#define UINT16 unsigned short#define UINT32 unsigned int#define int8T  signed char#define int16T signed short#define int32T signed int#define uint8T  unsigned char#define uint16T unsigned short#define uint32T unsigned int#define VOID_FUNC void#define boolean char#define HW_WRITE(ptr, val) (*(ptr)=val)#define HW_READ(ptr)      *(ptr)#define TRUE   1#define FALSE  0#define NULL 0/* Structure/Union/Enum/Typedef *//* Function Prototypes */#endif /* #ifndef */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?