在Keil中运行正确,但在Proteus中运行时却无响应,也没有
提示什么错误!出现什么问题了呢!还请大家帮帮我
//----------------------------------------------
//--------------------外部中断控制LED----------------
#include<reg51.h>
#define uchar unsigned char
#define uint unsigned int
sbit LED=P0^0;
// 主程序
void main()
{
LED=1;
IE=0X81;
IT0=1;
while(1);
}
// 中断函数
void EXternal_Interrupt() interrupt 0
{
LED=~LED;
}
解决问题:在Proteus中,右击开关“Edit Properties”,开关“BUTTON”中的“Other Properties”中的值为:“{PACKAGE=NULL}”,把这个值删除了就可以运行了!只是不知道为什么会这样? |