rizin/rsc2/scripts/intel2att
pancake 8fbe0be140 * Add --without-pic configure flag to build radare2
without PIC code (only static libraries, and link binaries)
  - Fix linking order dependencies
* Fix some missing EXT_EXE
* Add some definitions to make debug_ptrace register work
  on Solaris and *BSD (no windows yet)
  - Some fixes for mips, x86, x86-64, arm and powerpc
* Initial import of rsc2
  - Added intel2att rsc2 sample script
2010-01-21 21:22:30 +01:00

8 lines
140 B
Bash
Executable file

#!/bin/sh
while : ; do
printf ">> "
read op
bytes=`rasm2 -a x86.olly "$op"`
printf "$bytes "
rasm2 -a x86 -s att -d $bytes
done