Clean up: Remove redundant Python scripts and old test binaries

This commit is contained in:
Siggi
2026-04-13 06:29:14 +00:00
parent d7f0569a47
commit c8fba73574
8 changed files with 0 additions and 245 deletions

View File

@@ -1,13 +0,0 @@
import r2pipe
import sys
def adsp_disasm(hex_str):
"""Simple bridge to our existing disasm logic"""
# For now, just return hex + architecture name as POC
return f"ADSP219x: {hex_str}"
if __name__ == "__main__":
r2 = r2pipe.open()
# Register architecture via r2pipe hook
# Note: Modern r2 supports python-based asm plugins via 'L' (plugins)
print("ADSP219x Plugin loaded via r2pipe")