Miasm2
 All Classes Namespaces Files Functions Variables Typedefs Properties Macros
Public Member Functions | Public Attributes | Static Public Attributes | List of all members
miasm2.core.asmbloc.asm_constraint Class Reference
+ Inheritance diagram for miasm2.core.asmbloc.asm_constraint:
+ Collaboration diagram for miasm2.core.asmbloc.asm_constraint:

Public Member Functions

def __init__
 
def __str__
 

Public Attributes

 label
 
 c_t
 

Static Public Attributes

string c_to = "c_to"
 
string c_next = "c_next"
 
string c_bad = "c_bad"
 

Detailed Description

Definition at line 75 of file asmbloc.py.

Constructor & Destructor Documentation

def miasm2.core.asmbloc.asm_constraint.__init__ (   self,
  label = None,
  c_t = c_to 
)

Definition at line 80 of file asmbloc.py.

80 
81  def __init__(self, label=None, c_t=c_to):
82  self.label = label
83  self.c_t = c_t

Member Function Documentation

def miasm2.core.asmbloc.asm_constraint.__str__ (   self)

Definition at line 84 of file asmbloc.py.

84 
85  def __str__(self):
86  return "%s:%s" % (str(self.c_t), str(self.label))
87 

Member Data Documentation

string miasm2.core.asmbloc.asm_constraint.c_bad = "c_bad"
static

Definition at line 78 of file asmbloc.py.

string miasm2.core.asmbloc.asm_constraint.c_next = "c_next"
static

Definition at line 77 of file asmbloc.py.

miasm2.core.asmbloc.asm_constraint.c_t

Definition at line 82 of file asmbloc.py.

string miasm2.core.asmbloc.asm_constraint.c_to = "c_to"
static

Definition at line 76 of file asmbloc.py.

miasm2.core.asmbloc.asm_constraint.label

Definition at line 81 of file asmbloc.py.


The documentation for this class was generated from the following file: