zoukankan      html  css  js  c++  java
  • 我发现涯哥特有才。各种跳,组合式

    .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

  • 相关阅读:
    Cornfields POJ
    二维RMQ模板
    降雨量 HYSBZ
    Frequent values UVA
    UVA
    Argus UVALive
    关于二分图有向边和无向边问题探讨
    Guardian of Decency UVALive
    SAM I AM UVA
    【062新题】OCP 12c 062出现大量新题-15
  • 原文地址:https://www.cnblogs.com/suanguade/p/4038249.html
Copyright © 2011-2022 走看看