刚接触单片机,师傅们帮看一下下面的小程序在keil调试时停在delay位置就不动了,不知道是什么原因?
编译创建目标文件也没有问题,下载进去就是实现不了循环移位,搞不清楚怎么回事?请师傅多指点一下!
#include <reg52.h>
#include <intrins.h>
#define uchar unsigned char
#define uint unsigned int
void delay2(uint z)
{
uint x,y;
for(x=100;x>0;x++)
for(y=z;y>0;y++);
}
void main()
{
uchar temp;
temp=0xfe;
P1=temp;
while(1)
{
temp=_crol_(temp,1);
delay2(600); //keil调试停在这里就不动了
P1=temp;
}
} |