- 1、本文档共36页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
8080 汇编(国外英文资料)
8080 汇编(国外英文资料)
(long transfer)
JMP transfer instructions unconditionally
CALL procedure CALL
RET/RETF process returns.
2 conditional transfer instructions (short transitions, -128 to + 127)
When and only if (SF XOR OF) = 1, OP1 OP2)
JA/JNBE is not less than or not equal to.
JAE/JNB is greater than or equal to the transfer.
JB/JNAE is less than the transfer.
JBE/JNA is less than or equal to the transfer.
All four, test the results of unsigned integer arithmetic (mark C and Z).
JG/JNLE is greater than the transfer.
JGE/JNL is greater than or equal to the transfer.
JL/JNGE is less than the transfer.
JLE/JNG is less than or equal to the transfer.
All four, test the result of the integer operation of the sign (S, O and Z).
JE/JZ is the transfer.
JNE/JNZ does not equal time transfer.
JC is moved when it is in.
The JNC is moved without a carry.
The JNO does not overflow.
The JNP/JPO parity is shifted when the odd is odd.
The JNS symbol is moved when 0.
JO overflow.
The JP/JPE parity is transferred when the evenness is even.
The JS symbol is moved when 1.
3 loop control instruction (short shift)
LOOP CX is not a zero cycle.
LOOPE/LOOPZ CX is not a zero and the Z = 1 cycle.
The LOOPNE/LOOPNZ CX is not zero and the Z = 0 cycle.
PUSH and POP
Function: press the operands into or out of the stack
Syntax: PUSH operands POP operands
PUSH r PUSH M PUSH data POP M
PUSHF POPF, PUSHA POPA
Function: stack instruction group
Format: PUSHF POPF PUSHA POPA
LEA, typical vmlinux.lds, LES
Function: take the address to register
Grammar: LEA r, m LDS r, m LES r, m
XLAT (XLATB)
Function: check list instructions
Syntax: XLAT XLAT m
Arithmetic instruction
ADD, ADC
Function: addition instructions
Syntax: ADD OP1, OP2 ADC OP1, OP2
Format: ADD r1, r2 ADD r, m ADD m, r ADD r, data
Effect: C, P, A, Z, S, O
SUB, SBB
Function: subtraction instruction
Syntax: SUB OP1, OP2 SBB OP1, OP2
Format: SUB r1, r2 SUB r, m SUB m, r SUB r, data SUB m, data
Effect: C, P, A, Z, S, O
INC and DEC
Function: add or sub
文档评论(0)