摘要:
stc89c52上测试#include
#include
#define uchar unsigned char
#define uint unsigned int sbit st=P2^4;//A/D转换控制
sbit ale=P2^3;//通道控制
sbit oe=P2^5;//输出控制
sbit eoc=P3^7;//转换结束标志
sbit addr_a=P2^0;
sbit addr_b=P2^1;
sbit addr_c=P2^2; void delay(uchar x)
{ uint a,b; for(a=x;a>0;a--) for(b=110;b>0;b--);
} 阅读全文