Research
This commit is contained in:
parent
28cbbe3470
commit
a9153546ae
56 changed files with 6731 additions and 258 deletions
8
tmp_dump_offsets.py
Normal file
8
tmp_dump_offsets.py
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
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))
|
||||
Loading…
Add table
Add a link
Reference in a new issue