Crusader_Decomp/tmp_dump_regret_2040_region.py

8 lines
192 B
Python
Raw Normal View History

2026-04-10 18:14:55 +02:00
from pathlib import Path
data = Path(r'd:\Ghidra\Crusader\REGRET.EXE').read_bytes()
start = 0xD2840
end = 0xD28DC + 1
chunk = data[start:end]
print(f'len={len(chunk)}')
print(chunk.hex(' '))