remove dead urls, clean up readme

This commit is contained in:
bt3gl 2024-11-04 19:30:49 +07:00
parent 323465161a
commit bede0e3e79
251 changed files with 12365 additions and 627 deletions

View file

@ -0,0 +1,10 @@
#! /usr/bin/env python
import sys
from libdisasm import disasm,disasmbuf
dbuf = disasmbuf.DisasmBuffer(sys.stdin.read( ))
d=disasm.LinearDisassembler( )
d.disassemble(dbuf)
for rva,opcode in dbuf.instructions( ):
operands = map(lambda x:"%s %-13s" % (x.access( ),"[%s]" % str(x)),
opcode.operands( ))
print "%08x: %-20s %s" % (rva,str(opcode), "".join(operands))