2019-03-24 18:24发布
huo_hu 发表于 2014-4-7 23:31 你的sst是工作在仿真模式吗?
五加一等于六 发表于 2014-4-8 01:30 如何确定是否工作在仿真状态?
最多设置5个标签!
#include <reg52.h>
#include <intrins.h>
#define uint unsigned int
#define uchar unsigned char
void delay (uint xms);
uchar timer = 0;
sbit beem = P2^3;
void main ()
{
timer = 0xfe;
P1 = timer;
while (1)
{
delay (500);
beem = 1;
delay (500);
timer = _crol_ (timer, 1);
P1 = timer;
beem = 0;
}
}
void delay ( uint xms)
{
uint i,j;
for ( i=xms;i>0;i--)
for (j=110;j>0;j--);
}
如何确定是否工作在仿真状态?
"所用单片机仿真芯片为 SSTE516RD,单片机芯片为STC89C52"
还没看清楚你是怎么仿真的?怎么出来两个单片机?
一周热门 更多>