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

📄 int_handlers.c

📁 COLDFIRE 5282SC的文件
💻 C
字号:
/*
 * File:		int_handlers.c
 * Purpose:		Interrupt handlers
 *
 * Notes:		Any interrupt or exception is a fatal error.
 */

#include "src/init/m5282evb.h"
#include "src/fat/fat.h"

/********************************************************************/
void 
exception_handler (void *framep) 
{
	/* Catastrophic failure */
	RESULTS |= VECTOR(MCF5XXX_RD_SF_VECTOR(framep));

	#ifndef __MWERKS__
		asm(" halt");
	#else
		asm( halt);
	#endif
}

/********************************************************************/

⌨️ 快捷键说明

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