请各位大虾看一下这个程序有没有问题
#include<reg51.h>
sbit LED=p0^0;
void Delay() { unsigned char i,j; for(i=0;i<255;i++) for(j=0;j<255;j++); }
void main() { while(1) { LED=0; Delay(); LED=1; Delay(); } }
为什么我在keil中编译出现这个错误:
正在编绎 Text1.c... --- 错误: 不能执行 'C:\Keil\C51\BIN\C51.EXE' Text1.c - 1 错误 (s), 0 警告 (s).
[此贴子已经被admin于2009-8-4 0:41:15编辑过]
|