📄 int_handlers.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 + -