//////////////////// 下面是PIC单片机中止的写法!///////////////////////////////////////////////////////////
#include
volatile char i; //中止用到的变量须要用volatile润饰一下
void main()
{
}
void interrupt tt() //中止服务程序,不必声明
{
}
////////////////////////////////////////// 下面AVR单片机GCC中止程序的写法 /////////////////////////////////////////////
#include<avr/io.h>
#include
volatile char i; //中止用到的变量须要用volatile润饰一下
int main(void) //GCC编写的主函数是要用int型的函数
{
sei(); //开总中止
}
SIGNAL(SIG_INTERRUPT0) //外部中止0
{
}
SIGNAL(SIG__INTERRUPT1) //外部中止1
{
}
SIGNAL(SIG_OVERFLOW1) //定时器1溢出中止
{
}
SIGNAL(SIG_ADC)//ADC中止的
{
}
/////////////////////////////////// 下面是AVR单片机的ICC中止程序写法!///////////////////////////////////////////////////
#include
volatile char i; //中止用到的变量须要用volatile润饰一下
#pragma interrupt_handler miao:9
#pragmadata:code
const table[]={0x3f,0x06,0x5b,0x4f,0x66,0x6d,0x7d, 0x07,
0x7f,0x6f,0x77,0x7c,0x39,0x5e,0x79,0x71};
void main()
{
SREG|=(1<<7); //开总中止
}
void miao() //中止服务程序
{
}