CPU Simulator
    Preparing search index...

    An enum representing the available operations and their binary codes.

    Erik Burmester erik.burmester@nextbeam.net

    Index

    Enumeration Members

    ADC: "0000001"
    ADD: "0000000"
    AND: "0011101"
    CALL: "0100001"
    CLC: "0010110"
    CLI: "0011001"
    CMC: "0010111"
    CMP: "0000111"
    DIV: "0000101"
    INT: "0011011"
    IRET: "0011100"
    JE: "0001011"
    JG: "0001110"
    JGE: "0001111"
    JL: "0010000"
    JLE: "0010001"
    JMP: "0001001"
    JNE: "0001101"
    JNZ: "0001100"
    JZ: "0001010"
    LEA: "0010011"
    MOV: "0010010"
    MUL: "0000100"
    NEG: "0000110"
    NOP: "1111111"
    NOT: "0100000"
    OR: "0011110"
    POP: "0100011"
    POPF: "0010100"
    PUSH: "0100100"
    PUSHF: "0010101"
    RET: "0100010"
    SBB: "0000011"
    STC: "0011000"
    STI: "0011010"
    SUB: "0000010"
    SYSENTER: "0100101"
    SYSEXIT: "0100110"
    TEST: "0001000"
    XOR: "0011111"