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
8 lines
140 B
Bash
Executable file
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
|