MSC-51单片机,12MHz晶振,要求10s延迟,高手帮忙写个.
最好要汇编语言,C语言也行.
void delay_ms(uint xms) { uint i,j; for(i=xms;i>0;i++) //延时xms毫秒 for(j=110;j>0;j++); }
xms就是要延时的量