单片机英文缩写的英文全称及中文名称
汇编指令 助记符 英文注释 功能 1 MOV MOVe 传送 2 MOVC MOVe Code 代码传送 3 PUSH PUSH 压栈 4 POP POP 退栈 5 XCH eXCHange 交换 6 XCHD eXCHange Decimal 十进制交换 7 ADD ADD 加 8 ADDC ADD with Carry 带进位加 9 SUBB SUBbtract with Borrow 带进位减 10 INC INCrement 增量 11 DEC DECrement 减量 12 MUL MULtiply 乘 13 DIV DIVide 除 14 DA Decimal Adjust 十进制调整 15 ANL Logical And 逻辑与 16 ORL Logical OR 逻辑或 17 XRL Logical eXclusive oR 逻辑异或 18 CPL ComPLement 求补 19 CLR CLeaR 清除 20 SETB SET Bit 置位 21 RL Rotate Left 循环左移 22 RR Rotate Right 循环右移 23 RLC Rotate Left through the Carry flag 带进位循环左移 24 RRC Rotate Right through the Carry flag 带进位循环右移 25 SWAP SWAP (半字节)互换 26 AJMP Absolute JuMP 绝对转移 27 LJMP Long JuMP 长跳转 28 SJMP Short JuMP 短转移 29 JMP JuMP 跳转 30 JZ Jump if acc is Zero 累加器为零转移 31 JNZ Jump if acc is Not Zero 累加器不为零转移 32 JC Jump if Carry(if Cy=1) 进位位为1转移 33 JNC Jump if Not Carry(if Cy=0) 进位位为0转移 34 JB Jump if Bit is set(if Bit=1)指定位为1转移 35 JNB Jump if Not Bit(if Bit=1)指定位为0转移 36 JBC Jump if Bit is set and Clear bit 指定位等于1转移并清该位 37 CJNE Compare and Jump if Not Equal 比较不相等转移 38 DJNZ Decrement and Jump if Not Zero 减1不为0转移 39 ACALL Absolute CALL 绝对调用 40 LCALL Long CALL 长调用 41 RET RETurn 子程序返回 42 RETI RETurn from Interrupt 中断返回 43 NOP No OPeration 空操作 ...