当前位置:文档之家› 单片机英文缩写的全称

单片机英文缩写的全称

单片机英文缩写的全称
单片机英文缩写的全称

单片机缩写的英文全称

英文缩写:

MCS-51:Micro Computer System-51

PSW(Processor Status Word)中的标志位:

CY:Carry

AC:Auxiliary Carry

F0:Flag 0

RS:Register Select

OV:Overflow

P:Parity

指令:

MOV (Move)

MOVC (Move Code)

MOVX (Move External)

XCH (Exchange)

XCHD(Exchange low-order Digit)

PUSH

POP

AJMP (Absolutely Jump)

LJMP (Long Jump)

SJMP (Short Jump)

JMP (Jump)

JZ (Jump Zero)

JNZ (Jump Not Zero)

JC (Jump if Carry)

JNC (Jump if Not Carry)

JB (Jump if Bit is set)

JNB (Jump if Not Bit)

JBC (Jump if Bit is set and Clear Bit)

CJNE (Compare and Jump if Not Equal)

DJNZ (Decrease and Jump if Not Zero)

ACALL (Absolutely Call)

LCALL (Long Call)

RET (Return)

NOP (No Operation)

ADD

ADDC (Add with Carry)

SUBB (Subtract with Borrow)

MUL (Multiply)

DIV (Divide)

INC (Increase)

DEC (Decrease)

ANL (Logical AND)

ORL (Logical OR)

XRL (Logical Exclusive OR)

CPL (Complement)

CLR (Clear)

SETB (Set Bit)

RL (Rotate Left)

RR (Rotate Right)

RLC (Rotate Left with the Carry flag) RRC (Rotate Right with the Carry flag) XCHD

SWAP

DA (Decimal Adjust)

ORG (Origin)

DB (Define Byte)

DW (Define Word)

EQU (Equal)

DATA

XDATA (External Data)

BIT

END

汇编指令英文全称

汇编指令英文全称 一、传送指令 1、通用数据传送指令 指令英文全称 MOV move MOVSX extended move with sign data MOVZX extended move with zero data PUSH push POP pop PUSHA push all POPA pop all PUSHAD push all data POPAD pop all data BSWAP byte swap XCHG exchange CMPXCHG compare and change XADD exchange and add XLAT translate 2、输入输出端口传送指令 指令英文全称 IN input OUT output 3、目的地址传送指令 指令英文全称 LEA load effective address LDS load DS LES load ES LFS load FS LGS load GS LSS load SS 4、标志传送指令 指令英文全称 LAHF load AH from flag SAHF save AH to flag PUSHF push flag POPF pop flag PUSHD push dword flag POPD pop dword flag 二、运算指令 1、算术运算指令 指令英文全称 ADD add ADC add with carry INC increase 1 AAA ascii add with adjust DAA decimal add with adjust SUB substract SBB substract with borrow DEC decrease 1 NEC negative CMP compare AAS ascii adjust on substract DAS decimal adjust on substract MUL multiplication IMUL integer multiplication AAM ascii adjust on multiplication DIV divide IDIV integer divide AAD ascii adjust on divide CBW change byte to word CWD change word to double word CWDE change word to double word with sign to EAX CDQ change double word to quadrate word 2、逻辑运算指令 指令英文全称 AND and OR or XOR xor

51单片机英文缩写全称(整理最全)

51单片机英文缩写全称(整理最全) -CAL-FENGHAI-(2020YEAR-YICAI)_JINGBIAN

MCS-51指令英语全简称 (1)数据传送类指令(7种助记符) 助记符英文注释功能 MOV Move 对内部数据寄存器RAM和特殊功能寄存器SFR的数据进行传送 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 绝对转移

汇编指令的英文全称

汇编指令的英文全称 虽然,知不知道汇编语言指令的英文全称,并不影响血编程,不过,要是真学会了,连指令的英文都不知道也够别扭滴哈~,罗列出来,给大家参考参考。 8086CPU提供以下几大类指令。 一、数据传送指令 mov(move)、push、pop、pushf(push flags)、popf(pop flags)、xchg (exchange)等都是数据传送指令,这些指令实现寄存器和内存、寄存器和寄存器之间的单个数据传送。 二、算术运算指令 add、sub(substract)、adc(add with carry)、sbb(substract with borrow)、inc(increase)、dec(decrease)、cmp(compare)、imul(integer multiplication)、idiv(integer divide)、aaa(ASCII add with adjust)等都是算术运算指令,这些指令实现寄存器和内存中的数据运算。它们的执行结果影响标志寄存器的sf、zf、of、cf、pf、af位。 三、逻辑指令 and、or、not、xor(exclusive or)、test、shl(shift logic left)、shr(shift logic right)、sal(shift arithmetic left)、sar(shift arithmetic right)、rol(rotate left)、ror(rotate right)、rcl(rotate left through carry)、rcr(rotate right through carry)等都是逻辑指令。除了not指令外,它们的执行结果都影响标志寄存器的相关标志位。 四、转移指令 可以修改IP,或同时修改CS和IP的指令统称为转移指令。转移指令分为一下几类。 (1)无条件转移指令:jmp(jump); (2)条件转移指令:jcxz(jump if CX is zero)、je(jump if equal)、jb(jump if below)、ja(jump if above)、jnb(jump if not below)、jna(jump if not above)等; (3)循环指令:loop; (4)过程:call、ret(return)、retf(return far); (5)中断:int(interrupt)、iret(interrupt return)。 五、处理机控制指令 cld(clear direction)、std(set direction)、cli(clear interrupt)、sti(set interrupt)、nop(no operation)、clc(clear carry)、cmc(carry make change)、stc(set carry)、hlt(halt)、wait、esc(escape)、lock等,这些指令对标志寄存器

单片机常见英文缩写

lamant_sarah 单片机英文缩写全称及中文名称 一、寄存器部分 SFR= special function register //特殊功能寄存器(片内RAM 80H~FFH) ACC= accumulate //累加器 PSW= programmer status word //程序状态字 SP= stack point //堆栈指针 DPL,DPH=DPTR(data point register //数据指针寄存器)的低8位和高8位IE =interrupt enable // 中断使能 IP= interrupt priority //中断优先级 PCON =power control //电源控制 SCON= serial control //串行口控制

SBUF= serial buffer //串行数据缓冲 TCON =timer control //定时器控制 TMOD= timer mode //定时器方式 PSW: CY= carry (psw.7) //进位(标志) AC= auxiliary carry (psw.6) //辅助进位 F0= (psw.5) //用户自定义标志位 RS1,RS0=register selection (psw.4,psw.3)//工作寄存器组选择位OV=overflow (psw.2) //溢出 P=parity (psw.0) //奇偶校验位

IE: EA=Enable All Interrupt //CPU开/关中断控制位ET=Enable Timer //定时器溢出中断允许位 ES=Enable Serial Port //串行口中断允许位 EX=Enable External //外部中断的中断允许位 IP: PS=Priority Serial //串口优先级 PT=Priority Timer //定时器优先级 PX=Priority External //外部中断优先级

51单片机常用汇编语言助记符英文全称

51单片机常用汇编语言助记符英文全称 (1)数据传送类指令(7种助记符) MOV(英文为Move):对内部数据寄存器RAM和特殊功能寄存器SFR的数据进行传送;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) 逻辑与; 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)子程序绝对调用;

单片机英文缩写全称 整理最全

MCS-51指令英语全简称 (1)数据传送类指令(7种助记符) 助记符英文注释功能 MOV Move 对内部数据寄存器RAM 和特殊功能寄存器SFR的数据进行传送 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 跳转指令

单片机指令英文全称

MOV(英文为Move):对内部数据寄存器RAM和特殊功能寄存器SFR的数据进行传送;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 through the Carry flag) 带进位循环左移; RR(Rotate Right) 循环右移; RRC (Rotate Right through 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)中断返回; SJMP(Short Jump)短转移; AJMP(Absolute Jump)绝对转移; LJMP(Long Jump)长转移; CJNE (Compare Jump if Not Equal)比较不相等则转移; DJNZ (Decrement Jump if Not Zero)减1后不为0则转移; JZ (Jump if Zero)结果为0则转移; JNZ (Jump if Not Zero) 结果不为0则转移;

单片机英文缩写

INC 增量-Incremect ['inkrim?nt] n. 增加 DNC 减量-Decrement['dekrim?nt] n. 渐减,减少,减少量[计算机] 递减SJMP 短转移-Short jump LJMP 长转移-Long jump CJNE 比较转移-Compare jump not equality AJMP 绝对转移-Absolute jump ['?bs?lu:t] a. 绝对的,完全的n. 绝对 NOP 空操作-No operation XCH 交换-Exchange ADD 加法-Addition MUL 乘法-Multiplication DIV 除法-Division RL 左环移-Rotate left [r?u'teit] v. (使)旋转 RLC 进位左环移-Rotate left carry RR 右环移-Rotate right RRC 进位右环移-Rotate right carry PC 程序计数器 progammer counter ACC 累加器 accumulate [?'kju:mjuleit]v. 积聚,堆积 PSW 程序状态字 progammer status word ['steit?s] n. 地位,身份,情形,状况 SP 堆栈指针 stack point [st?k]n. 堆叠,堆 DPTR 数据指针寄存器 data point register ['red?ist?]v. 记录,登记n.记录 IP 中断优先级 interrupt priority [prai'?riti] n. 优先权,优先顺序,优先 IE 中断使能 interrupt enable TMOD 定时器工作方式寄存器 timer mode[m?ud] n. 方式,样式 ALE 变更 alter PSEN 程序存储器使能 progammer saving enable (选择外部程序存储器的意思) EA 允许所有中断 enable all interrupt PROG 程序 progamme SFR 特殊功能寄存器 special funtion register TCON 定时器控制 timer control PCON 电源控制 power control MSB 最高有效位 most significant bit[sig'nifik?nt]adj. 有意义的,有效的LSB 最低有效位 last significant bit last [lɑ:st]adj. 最后的most [m?ust] n. 最多,最大CY 进位(标志) carry ['k?ri]n. 进位,超位v. 携带 AC 辅助进位 assistant carry [e=sistent]形:助理的;辅助的 OV 溢出 overflow ORG 起始来源 originally [?'rid??n?li]adv. 本来,原来,最初 DB 字节定义 define byte EQU 等于 equal DW 字定义 define word E 使能 enable OE 输出使能 output enable RD 读 read WR 写 write rel 相对量 relatively ['rel?tivli] adv. 比较地,相对地

汇编语言指令英文全称

汇编指令英文全称 1.通用数据传送指令 MOV----> move MOV dest,src ;dest←src MOV指令把一个字节或字的操作数从源地址src传送至目的地址dest。 MOVSX---->extended move with sign data MOVZX---->extended move with zero data PUSH---->push POP---->pop 进栈出栈指令 PUSHA---->push all POPA---->pop all PUSHAD---->push all data POPAD---->pop all data BSWAP---->byte swap XCHG---->exchange 交换指令用来将源操作数和目的操作数内容交换,操作数可以是字、也可以是字节,可以在通用寄存器与通用寄存器或存储器之间对换数据,但不能在存储器与存储器之间对换数据。mov ax,1234h ;ax=1234h mov bx,5678h ;bx=5678h xchg ax,bx ;ax=5678h,bx=1234h xchg ah,al ;ax=7856h CMPXCHG---->compare and change XADD---->exchange and add XLAT---->translate 换码指令用于将BX指定的缓冲区中、AL指定的位移处的数据取出赋给AL。 2.输入输出端口传送指令 IN---->input OUT---->output 3.目的地址传送指令 LEA---->load effective addres 有效地址传送指令 mov bx,0400h mov si,3ch lea bx,[bx+si+0f62h] ;BX=139EH 这里BX得到的是主存单元的有效地址,不是物理地址,也不是该单元的内容。 LDS---->load DS LES---->load ES LFS---->load FS

单片机元件简称

protues元件库中英文对照表,对初学者找不到元件的很有用 元件名称中文名说明 7407 驱动门 1N914 二极管 74Ls00 与非门 74LS04 非门 74LS08 与门 74LS390 TTL 双十进制计数器 7SEG 4针BCD-LED 输出从0-9 对应于4根线的BCD码 7SEG 3-8译码器电路BCD-7SEG转换电路 ALTERNATOR 交流发电机 AMMETER-MILLI mA安培计 AND 与门 BA TTERY 电池/电池组 BUS 总线 CAP 电容 CAPACITOR 电容器 CLOCK 时钟信号源 CRYSTAL 晶振 D-FLIPFLOP D触发器 FUSE 保险丝 GROUND 地 LAMP 灯 LED-RED 红色发光二极管 LM016L 2行16列液晶可显示2行16列英文字符,有8位数据总线D0-D7,RS,R/W,EN三个控制端口(共14线),工作电压为5V。没背光,和常用的1602B功能和引脚一样(除了调背光的二个线脚) LOGIC ANAL YSER 逻辑分析器 LOGICPROBE 逻辑探针 LOGICPROBE[BIG] 逻辑探针用来显示连接位置的逻辑状态 LOGICSTATE 逻辑状态用鼠标点击,可改变该方框连接位置的逻辑状态LOGICTOGGLE 逻辑触发 MASTERSWITCH 按钮手动闭合,立即自动打开 MOTOR 马达 OR 或门 POT-LIN 三引线可变电阻器 POWER 电源 RES 电阻 RESISTOR 电阻器 SWITCH 按钮手动按一下一个状态 SWITCH-SPDT 二选通一按钮 VOLTMETER 伏特计 VOLTMETER-MILLI mV伏特计 VTERM 串行口终端

DSP 汇编指令缩写

ABS Absolute value of Accumulator ADD add to accumulator ADDC add to accumulator with carry ADDT add to accumulator with shift specified by TREG AND and with accumulator CMPL complement accumulator LACC load accumulator with shift LACL load low accumulator and clear high accumulator LACT load accumulator with shift specified by TREG NEG negate accumulator NORM normalize contents of accumulator OR or with accumulator ROL/ROR rotate accumulator left/right SACH/SACL store high/low accumulator with shift SFL/SFR shift accumulator left/right SUB subtract from accumulator SBUC conditional subtract SUBS subtract from accumulator with sign extension suppressed SUBT subtract from accumulator with shift specified by TREG XOR exclusive or with accumulator ZALR zero low accumulator and load high accumulator with rounding ADRK add short limmediate value to AR BANZ branch on AR not zero CMPR compare AR with AR0 LAR load AR MAR modify AR STR store AR SBRK subtract short limmediate APAC add PREG to accumulator LPH load PREG LT load TREG LTA load TREG and ACC previous product LTD load TREG ACC previous product and move date LTS load TREG and subtract previous product MAC multiply and accumulate MACD multiply and accumulate wit data move MPY multiply MPY A multiply and accumulate previous product MPYS multiply and subtract previous product MPYS multiply unsign PAC load accumulator with PREG SPAC subtract PREG from accumulator SPH/SPL store high/low PREG SPM set PREG output shift mode

单片机原理及应用习题答案

思考与练习题1 1.1单项选择题 (1)单片机又称为单片微计算机,最初的英文缩写是( D ) A.MCP B.CPU C.DPJ D.SCM (2)Intel公司的MCS-51系列单片机是( C )的单片机。 A.1位 B.4位 C.8位 D.16位 (3)单片机的特点里没有包括在内的是( C ) A.集成度高 B.功耗低 C.密封性强 D.性价比高 (4)单片机的发展趋势中没有包括的是( B ) A.高性能 B.高价格 C.低功耗 D.高性价比 (5)十进制数56的二进制数是( A ) A.00111000B B.01011100B C.11000111B D.01010000B (6)十六进制数93的二进制数是( A ) A.10010011B B.00100011B C.11000011B D.01110011B (7)二进制数11000011的十六进制数是( B ) A. B3H B.C3H C.D3H D.E3H (8)二进制数11001011的十进制无符号数是( B ) A. 213 B.203 C.223 D.233 (9)二进制数11001011的十进制有符号数是( B ) A. 73 B.-75 C.-93 D.75 (10)十进制数29的8421BCD压缩码是( A ) A.00101001B B.10101001B C.11100001B D.10011100B (11)十进制数-36在8位微机中的反码和补码是( D ) A.00100100B、11011100B B.00100100B、11011011B C.10100100B、11011011B D.11011011B、11011100B (12)十进制数+27在8位微机中的反码和补码分别是( C ) A.00011011B、11100100B B.11100100B、11100101B C.00011011B、00011011B D.00011011B、11100101B (13)字符9的ASCII码是( D ) A.0011001B B.0101001B C.1001001B D.0111001B (14)ASCII码1111111B的对应字符是( C ) A. SPACE B.P C.DEL D.{ (15)或逻辑的表达式是( B ) A.A?B=F B. A+B=F C. A⊕B=F D.(A?B)=F (16)异或逻辑的表达式是( C ) A.A?B=F B. A+B=F C. A⊕B=F D.(A?B)=F (17)二进制数10101010B与00000000B的“与”、“或”和“异或”结果是( B ) A.10101010B、10101010B、00000000B B.00000000B、10101010B、10101010B C.00000000B、10101010B、00000000B D.10101010B、00000000B、10101010B (18)二进制数11101110B与01110111B的“与”、“或”和“异或”结果是( D ) A.01100110B、10011001B、11111111B B.11111111B、10011001B、01100110B C.01100110B、01110111B、10011001B D.01100110B、11111111B、10011001B (19)下列集成门电路中具有与门功能的是( D ) A.74LS32 B.74LS06 C.74LS10 D.74LS08

8086寄存器及指令英文全称

通用寄存器:AX累加器(Accumulator),BX 基地址寄存器(Base Register),CX 计数寄存器(Count Register) ,DX数据寄存器(Data Register) 段寄存器:代码段寄存器CS--code segment , 数据段寄存器DS--data segment , 堆栈段寄存器SS--stack segment ,附加段寄存器ES--extra segment 。 特殊功能寄存器:指令指针寄存器IP--instruction pointer ,堆栈指针SP--stack pointer ,基址指针BP--base pointer ,源变址寄存器SI--source index ,目标变址寄存器DI--destination index ,标志寄存器FR--flag register(或者叫程序状态字PSW--program status word)。 PSW常用的标志有: 标志值为1时的标记值为0时的标记 OF(overflow flag) OV(overflow) NV(not overflow) ZF(zero flag) ZR(zero) NZ(not zero) PF(parity flag) PE(parity even) PO(parity odd) CF(carry flag) CY(carried) NC(not carried) DF(direction flag) DN(down) UP(up) SF(sign flag) NG(negative) PL(plus) TF(trap flag) IF(interrupt flag) AF(auxiliary flag) 一、运算结果标志位 1、进位标志CF(Carry Flag) 进位标志CF主要用来反映运算是否产生进位或借位。如果运算结果的最高位产生了一个进位或借位,那么,其值为1,否则其值为0。 使用该标志位的情况有:多字(字节)数的加减运算,无符号数的大小比较运算,移位操作,字(字节)之间移位,专门改变CF值的指令等。 2、奇偶标志PF(Parity Flag) 奇偶标志PF用于反映运算结果中“1”的个数的奇偶性。如果“1”的个数为偶数,则PF的值为1,否则其值为0。 利用PF可进行奇偶校验检查,或产生奇偶校验位。在数据传送过程中,为了提供传送的可靠性,如果采用奇偶校验的方法,就可使用该标志位。

单片机英文缩写的全称

单片机缩写的英文全称 英文缩写: MCS-51:Micro Computer System-51 PSW(Processor Status Word)中的标志位: CY:Carry AC:Auxiliary Carry F0:Flag 0 RS:Register Select OV:Overflow P:Parity 指令: MOV (Move) MOVC (Move Code) MOVX (Move External) XCH (Exchange) XCHD(Exchange low-order Digit) PUSH POP AJMP (Absolutely Jump) LJMP (Long Jump) SJMP (Short Jump) JMP (Jump) JZ (Jump Zero) JNZ (Jump Not Zero) JC (Jump if Carry) JNC (Jump if Not Carry) JB (Jump if Bit is set) JNB (Jump if Not Bit) JBC (Jump if Bit is set and Clear Bit) CJNE (Compare and Jump if Not Equal) DJNZ (Decrease and Jump if Not Zero) ACALL (Absolutely Call) LCALL (Long Call) RET (Return) NOP (No Operation) ADD ADDC (Add with Carry) SUBB (Subtract with Borrow) MUL (Multiply) DIV (Divide)

51汇编指令对应英文全称

MOV (Move) MOVC (Move Code) 代码字节传送 MOVX (Move External) [ik?st ?:n?l]外部的 PUSH 推 POP(pop-up) 弹出 AJMP (Absolute Jump) LJMP (Long Jump) SJMP (Short Jump) JMP (Jump Indirect)[?indi?rekt]间接的 JZ (Jump Zero) JNZ (Jump Not Zero) JC (Jump if Carry进位) 进位为1转移 JNC (Jump if Not Carry) 进位为0转移 JB (Jump if Bit is set) 直接寻址位为1转移 JNB (Jump if Not Bit) JBC (If Bit is set and Clear Bit) 直接寻址位为1转移并清该位CJNE (Compare比较and Jump if Not Equal相等) DJNZ (Decrement减1 and Jump if Not Zero) ACALL (Absolute Call) LCALL (Long Call) RET (Return) NOP (No Operation) ADD (addition) ADDC (Add with Carry进位) SUBB (Subtract with Borrow借) MUL (Multiply)[?m?ltiplai] 相乘 DIV (Division) 除 INC (Increment) 增量 DEC (Decrement) 减量 ANL (Logical AND) ORL (Logical OR) XRL (Logical Exclusive of OR) [ik?sklu:siv]排他的(非),异或 CPL (Complement) [?k?mplim? nt]补充,取反 CLR (Clear) SEBT (Set Bit) 置位 RL (Rotate Left) [r?u?teit].(使)旋 转 RR (Rotate Right) RLC (Rotate Left throught the Carry flag) 经过进位的**循环 左移 RRC (Rotate Right throught the Carry flag) XCH (Exchange) 交换 XCHD 交换低4位字节 SWAP 高低4位互换 DA (Decimal Adjust) [?desim?l] 十进制调整 ORG (Origin) [??rid?in]起点 DB (Define Byte) DW (Define Word) EQU (Equal) DATA XDATA (External Data) BIT

单片机指令和寄存器英语词汇

按功能分为五大类: (1)数据传送类指令(7种助记符) MOV(英文为Move):对内部数据寄存器RAM和特殊功能寄存器SFR的数据进行传送;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)中断返回; SJMP(Short Jump)短转移; AJMP(Absolute Jump)绝对转移; LJMP(Long Jump)长转移; CJNE (Compare Jump if Not Equal)比较不相等则转移; DJNZ (Decrement Jump if Not Zero)减1后不为0则转移; JZ (Jump if Zero)结果为0则转移;

单片机模块中的缩写英文及中文全称

单片机缩写的英文全称及中文名称(利于理解)PC = progammer counter //程序计数器 ACC = accumulate //累加器 PSW = progammer status word //程序状态字 SP = stack point //堆栈指针 DPTR = data point register //数据指针寄存器 IP = interrupt priority //中断优先级 IE = interrupt enable // 中断使能 TMOD = timer mode //定时器方式(定时器/计数器控制寄存器) ALE = alter (变更,可能是) PSEN = progammer saving enable //程序存储器使能(选择外部程序存储器的意思) EA = enable all(允许所有中断)完整应该是enable all interrupt PROG = progamme (程序) SFR = special funtion register //特殊功能寄存器 TCON = timer control //定时器控制 PCON = power control //电源控制 MSB = most significant bit//最高有效位 LSB = last significant bit//最低有效位 CY = carry //进位(标志) AC = assistant carry //辅助进位 OV = overflow //溢出 ORG = originally //起始来源 DB = define byte //字节定义 EQU = equal //等于

汇编语言英文字母全名

汇编语言英文字母全名 汇编 2010-07-24 17:24:05 阅读23 评论1 字号:大中小订阅 寄存器 AH&AL=AX(accumulator):累加寄存器 BH&BL=BX(base):基址寄存器 CH&CL=CX(count):计数寄存器 DH&DL=DX(data):数据寄存器 SP(Stack Pointer):堆栈指针寄存器 BP(Base Pointer):基址指针寄存器 SI(Source Index):源变址寄存器 DI(Destination Index):目的变址寄存器 IP(Instruction Pointer):指令指针寄存器 CS(Code Segment)代码段寄存器 DS(Data Segment):数据段寄存器 SS(Stack Segment):堆栈段寄存器 ES(Extra Segment):附加段寄存器 OF overflow flag 溢出标志操作数超出机器能表示的范围表示溢出,溢出时为1. SF sign Flag 符号标志记录运算结果的符号,结果负时为1. ZF zero flag 零标志运算结果等于0时为1,否则为0. CF carry flag 进位标志最高有效位产生进位时为1,否则为0. AF auxiliary carry flag 辅助进位标志运算时,第3位向第4位产生进位时为1,否则为0. PF parity flag 奇偶标志运算结果操作数位为1的个数为偶数个时为1,否则 为0. DF direcion flag 方向标志用于串处理.DF=1时,每次操作后使SI和DI减 小.DF=0时则增大. IF interrupt flag 中断标志 IF=1时,允许CPU响应可屏蔽中断,否则关闭中断. TF trap flag 陷阱标志用于调试单步操作. 汇编语言指令英文全名: 1.通用数据传送指令. MOV----> move MOVSX---->extended move with sign data MOVZX---->extended move with zero data PUSH---->push

相关主题
文本预览
相关文档 最新文档