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

Method set_current_address

python/lowlevelil.py:3375–3378  ·  view source on GitHub ↗
(self, value: int, arch: Optional['architecture.Architecture'] = None)

Source from the content-addressed store, hash-verified

3373 core.BNLowLevelILSetCurrentAddress(self.handle, self.arch.handle, value)
3374
3375 def set_current_address(self, value: int, arch: Optional['architecture.Architecture'] = None) -> None:
3376 if arch is None:
3377 arch = self.arch
3378 core.BNLowLevelILSetCurrentAddress(self.handle, arch.handle, value)
3379
3380 def set_current_source_block(self, block) -> None:
3381 core.BNLowLevelILSetCurrentSourceBlock(self.handle, block.handle)

Callers 1

translateMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected