?? irq_isr.c
字號:
/*==============================================Copyright (c)==========================================*=
* *
* *
* Ambulanc (Shenzhen) Tech. Co., Ltd. *
* *
* All rights reserved *
* *
* *
* *
* *
* File name: IRQ_ISR.C *
* *
* author: ckRain<馮耿超> *
* *
* E-mail: ck.fgc@hotmail.com *
* *
* data: 2008-06-28 *
* *
* describe: *
=*=====================================================================================================*/
#include <ADuC7026.H>
#include <stdio.h>
void Undef_Handler(void) __irq
{
while(1)
{
printf("Undef Abt!!!");
}
}
void SWI_Handler(void) __irq
{
while(1)
{
printf("SWI Abt!!!");
}
}
void PAbt_Handler(void) __irq
{
while(1)
{
printf("PAbt Abt!!!");
}
}
void DAbt_Handler(void) __irq
{
while(1)
{
printf("Data Abt!!!");
}
}
void FIQ_Handler(void) __irq
{
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -