type.h

来自「ti dsp 5402 的BOOT程序。利用此程序实现将代码写入到FLASH 的」· C头文件 代码 · 共 40 行

H
40
字号
/* type.h
 *
 * Copyright (c) 2000 Texas Instruments Incorporated
 *
 *  Originally created by DNA Software,
 *  Modified by Russ Heeschen for the FlashBurn
 *  project.
 */

/*
 * $Log: type.h,v $
 * Revision 1.2  2000/12/07 19:57:25  heeschen
 * v0.00002 of the FBTC54 program.
 * Changes made as a result of code review 12/05/00.
 * Doc. CR_12_05_00.doc is the minutes of the review.
 * Biggest change was to the RTDX comm. method, and
 * changing several macros into functions.
 *
 */

#if !defined( TYPE__H )
#define       TYPE__H

typedef enum 
{
   FALSE = 0,
   TRUE  = !FALSE
} BOOL;

typedef float f32;

typedef long s32;
typedef unsigned long u32;

typedef short s16;
typedef unsigned short u16;

#endif

⌨️ 快捷键说明

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