博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
8086汇编——课堂笔记整理5
阅读量:6842 次
发布时间:2019-06-26

本文共 451 字,大约阅读时间需要 1 分钟。

JMP(无条件跳转)

JMP SHORT OPR(段内跳转)(1byte)(+127~-128)

JMP OPR(near jump)(2byte)

JMP FAR PTR OPR(段间)(FAR类型,PTR强制类型转换)

标签内:

跳转结束 JMP DONE

e.g.1

A word array named ARRAY,N elements,the number of positive  in  DI register,the number of 0 in SI register,the number of negtive in AX register

 LOOP

隐含条件:CX<-(CX)-1,until (CX)==0

LOOPZ/LOOPE:LOOP until (CX)==0 || ZF==0

LOOPNZ/LOOPNE:LOOP until (CX)==0 || ZF==1

 

CALL

 

转载于:https://www.cnblogs.com/HackHer/p/5450986.html

你可能感兴趣的文章