51单片机英文缩写全称 单片机中的英文缩写免费下载( 二 )



rlc rotate left throught the carry flag 带进位循环左移

rr rotate right 循环右移

rrc rotate right throught the carry flag 带进位循环右移

swap swap 低4位与高4位交换



(4)控制转移类指令17种助记符

acall absolute subroutine call 子程序绝对调用

lcall long subroutine call 子程序长调用

ret return from subroutine 子程序返回

reti return from interruption 中断返回

jmp jump indirect 跳转指令

sjmp short jump 短转移

ajmp absolute jump 绝对转移

ljmp long jump 长转移 mcs-51指令英语全简称 第2页 cjne compare and jump if not equal 比较不相等则转移

djnz decrement and jump if not zero 减后不为则转移

jz jump if zero 结果为则转移

jnz jump if not zero 结果不为则转移

jc jump if the carry flag is set 有进位则转移

jnc jump if not carry 无进位则转移

jb jump if the bit is set) b 位为则转移

jnb jump if the bit is not set b 位为则转移

jbc jump if the bit is set and clear the bit 位为则转移并清除该位

nop no operation 空操作



5位操作指令1种助记符

setb set bit 置位

伪指令

助记符 英文注释 功能

org origin 起始地址

db define byte 定义字节

dw define word 定义字义

equ equal 赋值右赋左 等于

data data 数据赋值右赋左

xdata external data 外部数据赋值右赋左

bit bit 位地址赋值

end end 汇编结束

ds define storage 定义存储空间

51外部引脚

缩写 英文解释 中文解释

rst 9 reset 复位信号引脚

rxd (10--p3.0) receive data 串口接收端

txd (11--p3.1) transmit data 串口发送端

int0(————) 12--p3.2 interrupt0 外部中断0信号输入引脚

int1(————) 13--p3.3 interrupt1 外部中断1信号输入引脚

t0 (14--p3.4) timer0 定时/计数器0输入信号引脚

t1 (15--p3.5) timer1 定时/计数器1输入信号引脚

wr(———) (16--p3.6) write 存储器的写信号

写信号引脚

rd(———) (17--p3.7) read 读信号引脚

psen(—————) 29 progammer saving enable 外部程序存储器读选通

信号

ale 30 address latch enable 地址锁存允许信号

ea(———) (31) enable 外部rom选择信号

51内部寄存器

sfr special funtion register 特殊功能寄存器

acc accumulate 累加器a

psw progammer status word 程序状态字 mcs-51指令英语全简称 第3页 cy (psw.7) carry 进位标志位

ac (psw.6) assistant carry 辅助进位标志位

ov (psw.2) overflow 溢出标志位

pc progammer counter 程序计数器

dptr data point register 数据指针寄存器

sp stack point 堆栈指针

tcon timer control 定时器控制寄存器

tf1 tcon.7 timer1 flag t1中断标志位

tr1 tcon.6 timer1 run t1运行控制位

tf0 tcon.5 timer0 flag t0中断标志位

tr0 tcon.4 timer0 run t0运行控制位

ie1 tcon.3 interrupt1 exterior 外部中断1中断标志位

推荐阅读