已知8051单片机的时钟频率为12MHz,用T1定时。试编程由P1.0和P1.1引脚分别输出周期为2ms和500us的方波。

用汇编语言写,最好说明过程,谢谢了。。
2024-12-02 16:13:14
推荐回答(1个)
回答1:

org 00h
sjmp start
org 01bh
mov th1,#1eh
mov tl1,#0ch
cpl p1.1
inc r2
mov a,r2
anl a,#11b
jnz exit
cpl p1.0
exit:reti
start:
setb ea
setb et1
setb tr1
sjmp $