我发现涯哥特有才。各种跳,组合式

.386
.model flat, stdcall
option casemap :none
.code
start:
jmp tt1 ;;无条件跳转
nop
JE tt1 ;;JZ tt1 等于(ZF=1)
nop
JLE tt1 ;;JNG tt1 小于等于(ZF=1 or SF<>OF)
nop
JBE tt1 ;;JNA tt1 低于等于(CF=1 or ZF=1)
nop
JGE tt1 ;;JNL tt1 大于等于(SF=OF)
nop
JNB tt1 ;;JAE tt1;;JNC tt1;;JAE tt1 不低于(CF=0)
nop
JNO tt1 ;;无溢出(OF=0)
nop
JNS tt1 ;;非负数(SF=0)
nop
JPE tt1 ;;JP tt1 偶数(PF=1)
nop
;==========================
JNZ tt1 ;;JNE tt1 非零(ZF=0)
nop
JA tt1 ;;JNBE tt1 高于(CF=0 and ZF=0)
nop
JG tt1 ;;JNLE tt1 大于(ZF=0 and SF=OF)
nop
JB tt1 ;;JC tt1;;JNAE tt1 低于(CF=1)
nop
JL tt1 ;;JNGE tt1 小于(SF<>OF)
nop
JO tt1 ;;溢出(OF=1)
nop
JPO tt1 ;;JNP tt1 奇数(PF=0)
nop
JS tt1 ;;负数(SF=1)
nop
JCXZ tt1 ;;CX=0则跳
nop
JECXZ tt1 ;;ECX=0则跳
nop

mov eax,eax
tt1:
end start

 

posted @ 2014-10-20 16:09  穷到底  阅读(126)  评论(0编辑  收藏  举报