reil.definitions.SYS

Here are the examples of the python api reil.definitions.SYS taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

Example 1

Project: reil Source File: shorthand.py
Function: sys
def sys_(input0=None):
    """Extended REIL opcode.

    This opcode is used to indicate a transition between user and
    supervisor level code. On platforms where the standard mechanism
    for making this transition contains an inline parameter, for
    example the x86 int instruction, this value will be passed as the
    first input operand.
    """

    return definitions.Instruction(definitions.SYS, input0, None, None)