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.
28 lines
576 B
Python
28 lines
576 B
Python
"""Map the FIFA response-registry primitives surrounding state-3 completion."""
|
|
|
|
TARGETS = (
|
|
0x145336C50,
|
|
0x145336E60,
|
|
0x1453370B0,
|
|
0x1453371B0,
|
|
0x145337B20,
|
|
0x1453388A0,
|
|
0x145338950,
|
|
0x145339650,
|
|
0x1453396A0,
|
|
0x145339B10,
|
|
0x145374E10,
|
|
0x145375070,
|
|
0x145376200,
|
|
0x145376270,
|
|
0x1453762E0,
|
|
0x145376360,
|
|
)
|
|
|
|
for target in TARGETS:
|
|
print("\n===== %#x %s =====" % (target, fname(target)))
|
|
print(dec(target, 180)[:16000])
|
|
print("callers", callers(target)[:120])
|
|
print("callees", callees(target)[:120])
|
|
|