搜档网
当前位置:搜档网 › ARM指令全称及含义

ARM指令全称及含义

ARM指令全称及含义
ARM指令全称及含义

汇编指令英文全称

汇编指令英文全称 一、传送指令 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)子程序绝对调用;

单片机指令英文全称

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则转移;

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

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 跳转指令

汇编语言指令英文全称

汇编指令英文全称 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

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

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

单片机指令英文全称

51单片机汇编指令集(指令集带英文翻译) 一、数据传送类指令(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)出栈; 二、算术运算类指令(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) 除法; 三、逻辑运算类指令(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位交换; 四、控制转移类指令(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则转移; JC (Jump if the Carry flag is set)有进位则转移;

Linux常用命令英文全称与中文解释

Linux常用命令英文全称与中文解释 man: Manual 意思是手册,可以用这个命令查询其他命令的用法。 pwd:Print working directory 意思是密码。 su:Swith user 切换用户,切换到root用户 cd:Change directory 切换目录 ls:List files 列出目录下的文件 ps:Process Status 进程状态 mkdir:Make directory 建立目录 rmdir:Remove directory 移动目录 mkfs: Make file system 建立文件系统 fsck:File system check 文件系统检查 cat: Concatenate 串联 uname: Unix name 系统名称 df: Disk free 空余硬盘 du: Disk usage 硬盘使用率 lsmod: List modules 列表模块 mv: Move file 移动文件 rm: Remove file 删除文件 cp: Copy file 复制文件 ln: Link files 链接文件 fg: Foreground 前景 bg: Background 背景 chown: Change owner 改变所有者 chgrp: Change group 改变用户组 chmod: Change mode 改变模式 umount: Unmount 卸载 dd: 本来应根据其功能描述“Convert an copy”命名为“cc”,但“cc”已经被用以代表“C Complier”,所以命名为“dd” tar:Tape archive 解压文件 ldd:List dynamic dependencies 列出动态相依 insmod:Install module 安装模块 rmmod:Remove module 删除模块 lsmod:List module 列表模块 Unix: 操作系统的一种 Linux: 一种开源,多用户操作系统 Linus torvalds: linux系统作者 Kenel: 内核 GNU: GNU is Not Unix GNU不是unix OSS: open source software 开放源代码软件 License: 许可证Red hat: 红帽子公司 Text mode: 字符模式 Graphic mode: 图形界面 Root : linux默认系统管理员账号

MCS-51单片机_英文全称

指令 分类指令功能助记符英文全称 数据传送指令传递类指令片内RAM MOV Move 片外RAM MOVX Move External RAM ROM MOVC Move Code 堆栈指令压栈PUSH Push onto Stack 出栈POP Pop from Stack 交换类指令整字节XCH Exchange 低半字节XCHD Exchange low-order Digit A高/低4位SWAP Swap 算术运算指令加法不带进位位ADD Add 带进位位ADDC Add with Carry 减法带借位位SUBB Substract with Borrow 乘法MUL Multiply 除法DIV Divide 十进制调整DA Decimal Adjust 加1 INC Increment 减1 DEC Decrement 逻辑运算指令清0 CLR Clear 取反CPL Complement 循环左移1位 A RL Rotate Left A,C RLC Rotate Left through the Carry flag 循环右移1位 A RR Rotate Right A,C RRC Rotate Right through the Carry flag 与ANL Logical AND 或ORL Logical OR 异或XRL Logical Exclusive OR 控制转移类指令无条件转移指 令 (短转移)绝对 转移 AJMP Absolute Jump 长转移LJMP Long Jump 短转移(相对转 移) SJMP Short Jump 间接转移JMP Jump Indirect 条件转移指令为0转移JZ Jump Zero 补位0转移JNZ Jump Not Zero

相关主题