8cba70dc90
- Add 8 files present in docker/fifa17-python/tools but missing from the top-level tree: fut_accounts.py + 7 test_*.py contracts (all committed in the server's docker tree; byte-identical to the running image). - Preserve newer responder work already matching the running container: utas_server.py (offlineSeason), lsx_responder_v2.py (OPENFUT_BIND), blaze_responder_v3b.py, autopatch.py, pow_server.py, fut_store.py, test_fut_contract.py, fifa17-hook-m1.sh. - Add 30 newer ghidra_queries (draft purchase/state, SBC 9-26, runtime registries). Local tree is now a strict superset of B with all shared files byte-identical.
17 lines
635 B
Python
17 lines
635 B
Python
"""Analyze the unpacked FIFA17 SBC completion route offline."""
|
|
|
|
TARGETS = (
|
|
(0x146B805B0, "SBC request owner thunk"),
|
|
(0x145374E80, "generic request-state dispatcher"),
|
|
(0x145376270, "state-3 completion handler"),
|
|
(0x1453388A0, "response registry lookup (manager mode 1)"),
|
|
(0x145338950, "response registry lookup (manager mode 2)"),
|
|
(0x146162F50, "completion broadcast invoked on lookup miss"),
|
|
)
|
|
|
|
for target, label in TARGETS:
|
|
print("\n=== %s %#x %s ===" % (label, target, fname(target)))
|
|
print(dec(target, 300))
|
|
print("callers", callers(target)[:100])
|
|
print("xrefs", xrefs_to(target)[:100])
|