summaryrefslogtreecommitdiff
path: root/bin/floall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/floall.sh')
-rwxr-xr-xbin/floall.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/floall.sh b/bin/floall.sh
new file mode 100755
index 00000000..eda9c2c0
--- /dev/null
+++ b/bin/floall.sh
@@ -0,0 +1,28 @@
+#!/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"
+
+for file in $FILES; do
+ echo -n $file "-> "
+ (cd generated; ../bin/fir2flo.sh $file > $file.out; grep "res = " $file.out)
+done