view leo-obj/toolwrap/disasm-wrap.sh @ 375:6057c98d11a9

pirelli/audio-modes capture
author Mychaela Falconia <falcon@freecalypso.org>
date Sat, 31 Jul 2021 10:18:34 +0000 (2021-07-31)
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