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

📄 traps.c

📁 小型操作系统,以VC为开发环境,需要boachs调试
💻 C
字号:
/***************************************************************************
**     File name   : traps.c
**     Author      : x.cheng
**     Create date :
**
**	   Comment:
**        traps exception module file....
**
**     Revisions:
**     $Log: traps.c,v $
**     Revision 1.2  2005/08/04 08:34:42  x.cheng
**     new interrupt and exception handling method.
**
**     Revision 1.1.1.1  2005/07/27 06:53:15  x.cheng
**     add into repositories
**
**
***************************************************************************/
#include "const.h"
#include "type.h"
#include "stdarg.h"

#include "..\..\Inc\i386\system.h"
#include "..\..\Inc\i386\io.h"
#include "..\..\Inc\i386\interrupt.h"
#include "..\..\Inc\i386\exception.h"
#include "..\..\Inc\tui.h"
#include "..\..\Inc\debug.h"


/************************************************************
*************************************************************
**      Function Name:			vTrapsInit
**      Author:                 x.cheng
**
**      Comment:
**			initialize all the traps and ints
**
**      List of parameters:
**			no
**
**      Return value:   
**          no
**
**      Revisions:
**
*************************************************************
*************************************************************/
void vTrapsInit(void)
{
	Tp3EsrInitialize( );
	Tp4IsrInitialize( );
}

⌨️ 快捷键说明

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