Crusader_Decomp/tmp_dump_offsets.py
2026-04-12 14:45:08 +02:00

8 lines
256 B
Python

import os
fn=os.path.join('binary','Crusader - No Remorse Weapons Main Ram.bin')
for off in (0x133000,0x133416,0x1335d4):
with open(fn,'rb') as f:
f.seek(off)
b=f.read(128)
print(hex(off))
print(' '.join(f"{x:02X}" for x in b))