MCPcopy Create free account
hub / github.com/Vector35/debugger / get_reg_value

Method get_reg_value

api/python/debuggercontroller.py:710–716  ·  view source on GitHub ↗

Get the value of one register by its name :param reg: the name of the register

(self, reg: str)

Source from the content-addressed store, hash-verified

708 return DebugRegisters(self.handle)
709
710 def get_reg_value(self, reg: str) -> int:
711 """
712 Get the value of one register by its name
713
714 :param reg: the name of the register
715 """
716 return dbgcore.BNDebuggerGetRegisterValue(self.handle, reg)
717
718 def set_reg_value(self, reg: str, value: int) -> bool:
719 """

Callers 1

Calls

no outgoing calls

Tested by 1