Crusader_Decomp/tmp_check_python_asm_libs.py

7 lines
183 B
Python
Raw Normal View History

2026-04-10 18:14:55 +02:00
mods = ['keystone', 'capstone', 'distorm3', 'iced_x86']
for name in mods:
try:
__import__(name)
print(name, 'yes')
except Exception:
print(name, 'no')