当前位置:文档之家› 微机原理指令

微机原理指令

我现将指令系统中各种助记符的英文全名写出来,各种助记符的记忆就会变得很简单o(∩_∩)o...


一、数据传送指令

1.通用数据传送指令

MOV(Move) 传送

PUSH(Push onto the stack) 进栈

POP(Pop from the stack) 出栈

XCHG(Exchange) 交换

2.累加器专用传送指令

IN(Input) 输入

OUT(Output) 输出

XLAT(Translate) 换码

3.有效地址送寄存器指令

LEA(Load effective address) 有效地址送寄存器

LDS(Load DS with Pointer) 指针送寄存器和DS

LES(Load ES with Pointer) 指针送寄存器和ES

4.标志寄存器传送指令

LAHF(Load AH with flags) 标志送AH

SAHF(store AH into flags) AH送标志寄存器

PUSHF(push the flags) 标志进栈

POPF(pop the flags) 标志出栈

二、算术指令

1.加法指令

ADD(add) 加法

ADC(add with carry) 带进位加法

INC(increment) 加1

2.减法指令

SUB(subtract) 减法

SBB(subtract with borrow) 带借位减法

DEC(Decrement) 减1

NEG(Negate) 求补

CMP(Compare) 比较

3.乘法指令

MUL(Unsigned Multiple) 无符号数乘法

IMUL(Signed Multiple) 带符号数乘法

4.除法指令

DIV(Unsigned divide) 无符号数除法

IDIV(Signed divide) 带符号数除法

CBW(Convert byte to word) 字节转换为字

CWD(Contert word to double word) 字转换为双字

三、逻辑指令

1.逻辑运算指令

AND(and) 逻辑与

OR(or) 逻辑或

NOT(not) 逻辑非

XOR(exclusive or) 异或

TEST(test) 测试

2.移位指令

SHL(shift logical left) 逻辑左移

SAL(shift arithmetic left) 算术左移

SHR(shift logical right) 逻辑右移

SAR(shift arithmetic right) 算术右移

ROL(Rotate left) 循环左移

ROR(Rotate right) 循环右移

RCL(Rotate left through carry) 带进位循环左移

RCR(Rotate right through carry) 带进位循环右移

四、串处理指令

1.重复前端指令

REP(Repeat) 重复串操作直到(CX)=0为上

REPE(Repeat when empty) 若(CX)=0,则退出,否则CX=CX+1;

REPZ(Repeat when flag ) 若ZF=0,则退出,否则CX=CX+1;

REPC(Repeat when carry flag)

REPNE(Repeat when not empty)

REPNZ(Repeat when not zero flag)

REPNC(Repeat when not carry flag)

2.串操作指令

MOVSB (Move string of byte) 串传送指令

MOVSW(Move string of word) 串传送指令

CMPSB(Compare string of byte) 串比较指令

CMPSW(Compare string of

word) 串比较指令

SCASB(Scan string of byte) 串搜索指令

SCASW(Scan string of word) 串搜索指令

STOSB(Store string of byte) 存串指令

STOSW(Store string of word) 存串指令

LODSB(Load string of byte) 取串指令

LODSW(Load string of word) 取串指令

CLD(Clear direction flag)该指令使DF=0,在执行串操作指令时可使地址自动增量;

STD(Set direction flag) 该指令使DF=1,在执行串操作指令时可使地址自动减量.

DAA(Decimal adjust after addition) 组合BCD码的加法调整指令

DAS(Decimal adjust after substract) 组合BCD码的减法调整指令

AAA(ASCII adjust after addition) 非压缩BCD码加法调成指令

AAS(ASCII adjust after substract) 非压缩BCD码减法调成指令

AAM(ASCII adjust after multiple) 非压缩BCD码乘法调成指令

AAD(ASCII adjust after divid) 非压缩BCD码除法调成指令

五、控制转移指令

1.无条件转移指令

JMP(jmp) 跳转指令

2.条件转移指令

(1)根据单个条件标志的设置情况转移

JZ(或JE)(Jump if zero,or equal) 结果为零(或相等)则转移

JS(Jump if sign) 结果为负则转移

JNS(Jump if not sign) 结果为正则转移

JO(Jump if overflow) 溢出则转移

JNO(Jump if not overflow) 不溢出则转移

JNP(或JPO)(Jump if not parity,or parity odd) 奇偶位为0则转移

JP(或JPE)(Jump if parity,or parity even) 奇偶位为1则转移

JB(或JNAE,JC)(Jump if below,or not above or equal,or carry)低于,或者不高于或等于,或进位位为1则转移

JNB(或JAE,JNC)(Jump if not below,or above or equal,or not carry)不低于,或者高于或者等于,或进位位为0则转移

(2)比较两个无符号数,并根据比较的结果转移

JB(或JNAE,JC)

JNB(或JAE,JNC)

JBE(或JNA)(Jump if below or equal,or not above)低于或等于,或不高于则转移

JNBE(或JA)(Jump if not below or equal,or above)不低于或等于,或者高于则转移

(3)比较两个带符号数,并根据比较的结果转移

JL(或LNGE)(Jump if less,or not greater or equal)小于,或者不大于或者等于则转移

JNL(或JGE)(Jump if not less,or greater or equal)不小于,或者大于或者等于则转移

JLE(或JNG)(Jump if less or equal,or not greater)小于或等于,或者不大于则转移

JNLE(或JG)(Jump if not less or equal,or greater)不小于或等于,或者大于则转移

(4)测试CX的值为0则转移指令

JCXZ(Jump if CX register is zero) CX寄存器

3.循环指令

LOOP(loop) 循环指令

4.子程序

CALL(call) 调用

指令

RET(return) 返回指令

5.中断

INT(interrupt)指令

IRET(interrupt return) 从中断返回指令

INTO(interrupt if overflow) 若溢出则中断

六、处理机控制指令

1.标志处理指令

CLC(Clear carry) 进位位置0指令CF<-0

CMC(Complement carry) 进位位求反指令CF<-CF

STC(Set carry) 进位位置1指令CF<-1

CLD(Clear direction) 方向标志置0指令DF<-0

STD(Set direction) 方向标志置1指令DF<-1

CLI(Clear interrupt) 中断标志置0指令IF<-0

STI(Set interrupt) 中断标志置1指令IF<-0

2.其他处理机控制指令

NOP(No Opreation) 无操作

HLT(Halt) 停机

WAIT(Wait) 等待

ESC(Escape) 换码

LOCK(Lock) 封锁


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