mirror of
https://github.com/marketideas/qasm.git
synced 2024-12-26 23:29:22 +00:00
38 lines
502 B
Bash
Executable File
38 lines
502 B
Bash
Executable File
#!/bin/bash
|
|
|
|
X=
|
|
if [ "$1""L" != "L" ] ; then
|
|
X=_$1
|
|
fi
|
|
|
|
OUTDIR=./m32out
|
|
|
|
rm -rf $OUTDIR
|
|
mkdir -p $OUTDIR
|
|
|
|
SRC=`ls ./testdata | grep -E '^([0-9]+)(.*)\.[Ss]'`
|
|
|
|
#SRC=`ls ./testdata | grep -E '^([0-9]+)(.*)\.[Ss]' | grep -i 2007`
|
|
|
|
for S in $SRC ; do
|
|
|
|
S1=$S
|
|
S1=${S1/.S/}
|
|
S1=${S1/.s/}
|
|
|
|
cd ./testdata
|
|
merlin32$X . $S 2>/dev/null >/dev/null
|
|
#merlin32 . $S 2>/dev/null
|
|
|
|
R=?$
|
|
cd .. >/dev/null
|
|
mv ./testdata/$S1 $OUTDIR/$S1.bin 2>/dev/null
|
|
rm -f ./testdata/*.txt 2>/dev/null
|
|
R=?$
|
|
|
|
done
|
|
ls $OUTDIR
|
|
|
|
|
|
|