em mới học vi điều khiển mong mọi người bớt chút thời gian giúp đỡ ạ.
em muốn chạy mô phỏng trên proteus 8 ,e nạp code cho at89c52 có mã code .c
#include <REGX52.H>
#define Led_Port P0
void delay(long x)
{
while(x>0)
{
x--;
}
}
void main ()
{
while(1)
{
Led_Port = 0x0;
delay(3000);
Led_Port = 0xff;
delay(3000);
}
}
mã thì em dùng keil c để viết và đã dịch như trên hướng dẫn nhưng khi em nạp cho nó thì nó lại báo hẳn 3 lỗi
DSIM model MC8051.DLL failed to authorize - missing ỏ invalid Cútomer Key
Real Time Simulation failed to start
Simulation FAILED due to fatal simulator errors
em nghĩ tra trên google dich thì thấy là chưa có key nghĩa là em dùng phần mềm chưa ***** vì em dùng bản demo ? mong tin của các cao thủ ở trên đây ạ ?
em muốn chạy mô phỏng trên proteus 8 ,e nạp code cho at89c52 có mã code .c
#include <REGX52.H>
#define Led_Port P0
void delay(long x)
{
while(x>0)
{
x--;
}
}
void main ()
{
while(1)
{
Led_Port = 0x0;
delay(3000);
Led_Port = 0xff;
delay(3000);
}
}
mã thì em dùng keil c để viết và đã dịch như trên hướng dẫn nhưng khi em nạp cho nó thì nó lại báo hẳn 3 lỗi
DSIM model MC8051.DLL failed to authorize - missing ỏ invalid Cútomer Key
Real Time Simulation failed to start
Simulation FAILED due to fatal simulator errors
em nghĩ tra trên google dich thì thấy là chưa có key nghĩa là em dùng phần mềm chưa ***** vì em dùng bản demo ? mong tin của các cao thủ ở trên đây ạ ?
Comment