common.h

来自「UCOSII的移植,及多任务的管理,处理器为EPSON公司的」· C头文件 代码 · 共 28 行

H
28
字号
/************************************************************************
 *									*
 *	Copyright (C) SEIKO EPSON CORP. 1999				*
 *									*
 *	File name: common.h						*
 *	  This is common header file.					*
 *									*
 *	Revision history						*
 *		1999.03.11	T.Mineshima	Start.			*
 *		1999.04.22	T.Mineshima	Define modify.		*
 *									*
 ************************************************************************/

/* Constant define */
#ifndef	TRUE
#define	TRUE	(1==1)
#endif

#ifndef	FALSE
#define	FALSE	(!(1==1))
#endif

/* Macro */
#define	INT_BEGIN	asm("pushn	%r15")
#define	INT_END		asm("popn	%r15\n	reti")


⌨️ 快捷键说明

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