Crusader_Decomp/scripts/_tmp_probe_debugger_formatter_helpers.py
2026-04-09 00:32:12 +02:00

9 lines
282 B
Python

import sys
sys.path.insert(0, r"k:\mcp\GhidraMCP")
import bridge_mcp_ghidra as bridge
for address in ["13a0:0291", "13a0:045c"]:
print(f"=== {address} ===")
print(bridge.get_function_containing(address))
print(bridge.decompile_function_by_address(address))
print()