summaryrefslogtreecommitdiff
path: root/bin/floall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/floall.sh')
-rwxr-xr-xbin/floall.sh25
1 files changed, 2 insertions, 23 deletions
diff --git a/bin/floall.sh b/bin/floall.sh
index eda9c2c0..36f7119a 100755
--- a/bin/floall.sh
+++ b/bin/floall.sh
@@ -1,28 +1,7 @@
#!/bin/bash
-FILES="BitsOps \
- BundleWire \
- ComplexAssign \
- Counter \
- DirChange \
- EnableShiftRegister \
- GCD \
- LFSR16 \
- MemorySearch \
- ModuleVec \
- Mul \
- Outer \
- RegisterVecShift \
- Risc \
- Rom \
- SIntOps \
- Stack \
- Tbl \
- UIntOps \
- VecApp \
- VecShiftRegister \
- VendingMachine"
+shift 1
-for file in $FILES; do
+for file in "$@"; do
echo -n $file "-> "
(cd generated; ../bin/fir2flo.sh $file > $file.out; grep "res = " $file.out)
done