more work done
This commit is contained in:
parent
5cc5612f4e
commit
d323bb28fc
68 changed files with 714 additions and 19 deletions
5
scripts/_tmp_find_text_section.py
Normal file
5
scripts/_tmp_find_text_section.py
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
import re
|
||||
from pathlib import Path
|
||||
xml = Path('exports/CRUSADER.EXE.xml').read_text(encoding='utf-8', errors='ignore')
|
||||
for m in re.finditer(r'<MEMORY_SECTION NAME="\.text" START_ADDR="([^"]+)" LENGTH="([^"]+)"', xml):
|
||||
print(m.group(0))
|
||||
Loading…
Add table
Add a link
Reference in a new issue