51单片机中断入口地址在c语言中的表示
时间:11-18
来源:互联网
点击:
函数类型 函数名(随便) 中断标识(不同的数字代表不同中断入口)
例如:
void INT () interrupt 0 //外部中断0
{}
void INT () interrupt 1 //定时/计数器0
{}
void INT () interrupt 2 //外部中断1
{}
void INT () interrupt 3 //定时/计数器1
{}
void INT () interrupt 4 //串口
{}
interrupt X 其中X表示中断号, 0表示外部中断0 1表示定时器0溢出中断 2表示外部中断1(/INT1) 3表示定时器1溢出中断 4表示串行口中断 5表示定时器2溢出中断 有些增强型51还会有其他中断 用法: void timer0_ISR(void) interrupt 1 { }
51单片机中断入口地 相关文章:
- Windows CE 进程、线程和内存管理(11-09)
- RedHatLinux新手入门教程(5)(11-12)
- uClinux介绍(11-09)
- openwebmailV1.60安装教学(11-12)
- Linux嵌入式系统开发平台选型探讨(11-09)
- Windows CE 进程、线程和内存管理(二)(11-09)