FreeCalypso > hg > freecalypso-reveng
view leo-obj/toolwrap/disasm-wrap.sh @ 379:a760a5eeed65
compal/audio/omr-guide: another avenue of investigation
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 10 Oct 2021 19:53:35 +0000 |
parents | 21fda9752bd9 |
children |
line wrap: on
line source
#!/bin/sh if [ $# != 3 ] then echo "usage: $0 objfile hints-file disasm-outfile" >&2 exit 1 fi if [ -f $2 ] then set -x ../tool/tiobjd $1 disasm -h $2 > $3 else set -x ../tool/tiobjd $1 disasm > $3 fi