📄 _bios.h
字号:
/****************************************************************
* *
* Program : _BIOS.H *
* *
* Purpose : Components structure device. *
* *
* Compile : SH SERIES C Compiler Ver. 4.1 *
* *
* Version : 1.00 *
* *
* Create : 2002-12-30 Monday By KWM *
* *
* Copyright (C) 2002 Amnokgang Technology Development Corp. *
* All Rights Reserved. *
* *
****************************************************************/
#include <string.h>
#include "option.h"
#include "AT91RM9200.h"
#include "_BCmd232.H"
#include "_CPU.H"
#include "_Debug.H"
#include "_FlashMap.H"
#include "_RS232.H"
#include "_Timer.H"
#include "_Key16.h"
#include "_LCD.h"
#include "_FpCap.H"
#include "_Mark.H"
#include "main.H"
#define BIT(a) (0x1<<a)
#define SET_BIT(x,y) ((x) |= (y))
#define CLEAR_BIT(x,y) ((x) &= ~(y))
#define CHECK_BIT(x,y) ((x) & (y))
#define REV_BIT(x,y) (CHECK_BIT((x),(y))!=0 ? CLEAR_BIT((x),(y)) : SET_BIT((x),(y)))
/****************************************************************
*
* End of file : _BIOS.H
*
****************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -