mirror of
https://github.com/zeldaret/ph
synced 2026-09-09 03:40:25 -04:00
Add ActorSwitchObject
This commit is contained in:
@@ -54,6 +54,7 @@ output = output.decode()
|
||||
# print(output)
|
||||
|
||||
mangled_funcs: list[str] = re.findall(r'.text +([^\$ ]\S+)', output)
|
||||
init_funcs: list[str] = re.findall(r'.init +([^\$ ]\S+)', output)
|
||||
mangled_data: list[str] = re.findall(r'(?:.data|.bss) +([^\. ]\S+)', output)
|
||||
|
||||
if len(mangled_funcs) > 0:
|
||||
@@ -63,6 +64,13 @@ if len(mangled_funcs) > 0:
|
||||
print(func)
|
||||
print()
|
||||
print()
|
||||
if len(init_funcs) > 0:
|
||||
print('Static initializers:')
|
||||
print()
|
||||
for func in init_funcs:
|
||||
print(func)
|
||||
print()
|
||||
print()
|
||||
if len(mangled_data) > 0:
|
||||
print('Data:')
|
||||
print()
|
||||
|
||||
Reference in New Issue
Block a user