MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / EntryRegisterValue

Class EntryRegisterValue

python/variable.py:169–178  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

167
168@dataclass(frozen=True, eq=False)
169class EntryRegisterValue(RegisterValue):
170 value: int = 0
171 offset: int = 0
172 type: RegisterValueType = RegisterValueType.EntryValue
173 reg: Optional['binaryninja.architecture.RegisterName'] = None
174
175 def __repr__(self):
176 if self.reg is not None:
177 return f"<entry {self.reg}>"
178 return f"<entry {self.value}>"
179
180
181@dataclass(frozen=True, eq=False)

Callers 1

from_BNRegisterValueMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected