mirror of
https://github.com/geohot/qira
synced 2025-03-16 03:52:55 +03:00
13 lines
194 B
Bash
Executable File
13 lines
194 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
pushd .
|
|
cd ../qemu/qemu-2.0.0/
|
|
make -j32
|
|
popd
|
|
|
|
#rm -rf /tmp/qira*
|
|
../qemu/qemu-2.0.0/i386-linux-user/qemu-i386 -singlestep -d in_asm $@ 2> /tmp/qira_disasm
|
|
ls -l /tmp/qira*
|
|
|