单片机常用英文缩写全称

合集下载
相关主题
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

MCS-51 指令

(1)数据传送类指令( 7 种助记符)助记符英文注释功能

SFR 的数据进行传送MOV Move 对内部数据寄存器 RAM 和特殊功能寄存器 MOVC Move Code 读取程

序存储器数据表格的数据传送

MOVX Move External RAM 对外部 RAM 的数据传送

XCH Exchange 字节交换

XCHD Exchange low-order Digit 低半字节交换 PUSH Push onto Stack)入栈

POP Pop from Stack)出栈

(2)算术运算类指令( 8 种助记符)

ADD Addition 加法

ADDC Add with Carry 带进位加法

SUBB Subtract with Borrow 带借位减法 DA Decimal Adjust 十进制调整 INC Increment 加 1 DEC Decrement 减 1 MUL Multiplication 、 Multiply 乘法

DIV Division 、 Divide 除法

(3)逻辑运算类指令( 10 种助记符) ANL And Logic 逻辑与 ORL OR Logic 逻辑或

XRL Exclusive-OR Logic 逻辑异或

CLR Clear 清零

CPL Complement 取反 RL Rotate left 循环左移

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 长转移

CJNE Compare and Jump if Not Equal 比较不相等则转移

DJNZ Decreme nt and Jump if Not Zero 减1后不为0则转移 JZ Jump if Zero 结果为0则转移JNZ Jump if Not Zero 结果不为0则转移 JC Jump if the Carry flag is set 有进位则转移

JNC Jump if Not Carry 无进位则转移

JB Jump if the Bit is set) B 位为1则转移

JNB Jump if the Bit is Not set B 位为 0 则转移

JBC Jump if the Bit is set and Clear the bit 位为1则转移,并清除该位

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

51 外部引脚 缩写 英文解释 中文解释

RST (9) Reset 复位信号引脚

Receive Data 串口接收端 Transmit Data 串口发送端

12-

-P3.2)Interrupt0 外部中断 0 信号输入引脚 13- -P3.3)Interrupt1 外部中断 1 信号输入引脚 Timer0 定时/计数器 0 输入信号引脚 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 程序状态字

CY (PSW.7) carry 进位标志位

AC (PSW.6) assistant carry 辅助进位标志位

OV (PSW.2) overflow 溢出标志位

PC progammer counter 程序计数器

DPTR data point register 数据指针寄存器

RxD

(10--P3.0) TxD (11--P3.1) INT0( ———— ) INT1( ———— )

T0

(14--P3.4) T1

(15--P3.5)

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 中断标志位IT1 ( TCON.2 ) Interrupt1 touch 外部中断 1 触发方式选择位IE0 (TCON.1 ) Interrupt0 exterior 外部中断 0 中断标志位IT0 (TCON.0 ) Interrupt0 touch 0-电平触发 1-下降沿触发IE ( A8H ) interrupt enable 中断允许寄存器

EA (IE.7) enable all interrupt 中断总允许位

ES (IE.4) enable serial 串行口中断允许位

ET1 ( IE.3 ) enable timer 1 T1 中断允许位

EX1 ( IE.2) enable exterior

1 外部中断 1 中断允许位

ET0 ( IE.1 ) enable timer 0 T0 中断允许位

EX0 ( IE.0) enable exterior

0 外部中断 0 中断允许位

IP ( B8H ) interrupt priority 中断优先级寄存器PS (IP.4) priority serial 串口优先级标志位

PT1 (IP.3) priority timer 1 定时器 1 优先级标志位

PX1 (IP.2) priority

exterior 1 外部中断 1 优先级标志位

PT0 (IP.1) priority timer 0 定时器 0 优先级标志位

PX0 (IP.0) priority

exterior 0 外部中断 0 优先级标志位

PCON (87H) power control 电源控制和波特率选择

TMOD (89H) timer mode 定时器方式控制寄存器

MSB = most significant bit// 最高有效位

LSB = last significant bit// 最低有效位

OE = output enable // 输出使能

AC(alternating current) 交流 (电) tnHh F ( q

A /D(analog to digital) 模拟/数字转换"6o T B

ADC(analog to digital convertor) 模拟/数字转换器GCu[- Z8NDN

ADM(adaptive delta modulation) 自适应增量调制lO- 6 kC

ADPCM(adaptive differential pulse code modulation) 自适应差分脉冲编码调制

ALU(arithmetic logic unit) 算术逻辑单元dgjd,ik

ASCII(American standard code for information )F y *&-

interchange) 美国信息交换标准码jk8y :J M(

AV(audio visual) 声视,视听c-, ( ,$t k

BCD(b in ary coded decimal)二进制编码的十进制数…

BCR(bi-directional controlled rectifier) 双向晶闸管ZPoLm__ B

BCR(buffer courtier reset) 缓冲计数器l@! <& |

BZ(buzzer) 蜂鸣器,蜂音器ZB8 nd c+

C(capacitance,capacitor) 电容量,电容器9 |0 :~'Uy

CATV(cable television)电缆电视?

CCD(charge-coupled device) 电荷耦合器件 d AU- sD CCTV(closed-circuit television) 闭路电视.3 {qmj&Y I CMOS(complementary) 互补 MOS jd "1 SQ

相关文档
最新文档