利用译码法扩展一片6264,判定该6264是否工作正常

2020-02-04 09:25发布

#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);
}
0条回答

一周热门 更多>