?? stddefs.h
字號(hào):
/**********************************************************
*
* The following software is for demonstration purposes only.
* It is not fully tested, nor validated in order to fullfill
* its task under all circumstances. Therefore, this software
* or any part of it must only be used in an evaluation
* laboratory environment.
* This software is subject to the rules of Accemic's
* standard DISCLAIMER, available at www.accemic.com.
*
* Copyright (c) 2001-2003 Accemic GmbH & Co. KG
* All rights reserved
*
***********************************************************
*
* Module name : samples.h
* Version : 1.01
* Date of creation. : 07.03.2003
* Last Modification : 14.08.2003
* Authors : Rainer Harthaus (RH)
*
***********************************************************
*
* Description:
* standard definitions
*
***********************************************************
*
* History
*
* Vers * Datum * Name * Subject
* 1.00 * 07.03.03 * RH * first creation
* 1.01 * 14.08.03 * AW * 545 family included
*
***********************************************************
*
* Please visit www.accemic.com
* for updates and other valuable developer ressources
*
**********************************************************/
#ifndef STDDEFS_H
#define STDDEFS_H
typedef unsigned long DWORD;
typedef unsigned long dword;
typedef unsigned short WORD;
typedef unsigned short word;
typedef unsigned char BYTE;
typedef unsigned char byte;
typedef unsigned char BOOL;
typedef unsigned char bool;
typedef __far BYTE* LPBYTE;
typedef __near BYTE* PBYTE;
#define uchar unsigned char
#define uint unsigned int
#define ulong unsigned long
#define INT8U unsigned char
#define INT16U unsigned int
#define INT32U unsigned long
#define FAR __far
#define FALSE 0
#define TRUE 1
#define false 0
#define true 1
#define OUT 1
#define IN 0
#include "cpu.h"
#if defined(__CPU_MB90385_SERIES)
#include "mb90385.h"
#elif defined(__CPU_MB90390_SERIES)
#include "mb90390.h"
#elif defined(__CPU_MB90420_SERIES)
#include "mb90420.h"
#elif defined(__CPU_MB90425_SERIES)
#include "mb90425.h"
#elif defined(__CPU_MB90435_SERIES)
#include "mb90435.h"
#elif defined(__CPU_MB90440_SERIES)
#include "mb90440.h"
#elif defined(__CPU_MB90455_SERIES)
#include "mb90455.h"
#elif defined(__CPU_MB90460_SERIES)
#include "mb90460.h"
#elif defined(__CPU_MB90470_SERIES)
#include "mb90470.h"
#elif defined(__CPU_MB90495_SERIES)
#include "mb90495.h"
#elif defined(__CPU_MB90520_SERIES)
#include "mb90520.h"
#elif defined(__CPU_MB90540_SERIES)
#include "mb90540.h"
#elif defined(__CPU_MB90545_SERIES)
#include "mb90545.h"
#elif defined(__CPU_MB90550A_SERIES)
#include "mb90550.h"
#elif defined(__CPU_MB90560_SERIES)
#include "mb90560.h"
#elif defined(__CPU_MB90570_SERIES)
#include "mb90570.h"
#elif defined(__CPU_MB90580_SERIES)
#include "mb90580.h"
#elif defined(__CPU_MB90590_SERIES)
#include "mb90590.h"
#elif defined(__CPU_MB90595_SERIES)
#include "mb90595.h"
#endif
#endif
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -