⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 type.h

📁 针对ti c6713 dsk的flashburn烧写程序
💻 H
字号:
/**********************************************************************************
 * Copyright 2004-2005 - Software Design Solutions, Inc.  All rights reserved.
 *
 * Portions of this work have been provided under license with Texas Instruments Inc.
 *
 * Definition of portable types
 *
 *********************************************************************************/

#ifndef  _TYPE_H 
#define  _TYPE_H

typedef enum                                      /* boolean */
{
   False = 0x0000,                                /* false */
   True  = 0x0001                                 /* true */
} bool;

typedef float f32;

typedef int s32;

typedef short s16;

typedef unsigned char u8;

typedef unsigned short u16;

typedef unsigned int u32;

#endif

⌨️ 快捷键说明

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