#include<reg51.h>
#include<absacc.h>
main()
{
unsigned char cont;
unsigned char i;
bit wrong;
wrong=0; //设定没有错误存储单元
cont=0x8000;//设定读写初始地址
i=20;
while(i--){
xbyte[cont]=0x55;//向6264中写入55H
cont++;
}
cont=0x8000;
i=20;
while(i--){
if(xbyte[cont]!=0x55){
wrong=1; //说明有错误存储单元
goto ed; // 发现有错误存储单元,停止检测
}
cont++;
}
ed: while(1);
}
一周热门 更多>