import isystem.connect as ic
winidea_id = ''
def test_getLabelAddress():
connMgr = ic.ConnectionMgr()
connMgr.connect(ic.CConnectionConfig().instanceId(winidea_id))
addCtrl = ic.CAddressController(connMgr)
addData = addCtrl.getLabelAddress("_reset")
hexAdd = hex(addData.getAddress())
memArea = addData.getMemArea()
print(f"Label '_reset' is at address '{hexAdd}' at memory area '{memArea}'.")
if __name__ == "__main__":
test_getLabelAddress()