summaryrefslogtreecommitdiff
path: root/bin/appall.sh
diff options
context:
space:
mode:
Diffstat (limited to 'bin/appall.sh')
-rwxr-xr-xbin/appall.sh28
1 files changed, 28 insertions, 0 deletions
diff --git a/bin/appall.sh b/bin/appall.sh
new file mode 100755
index 00000000..0e676ed6
--- /dev/null
+++ b/bin/appall.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 $file
+ (cd generated; ../bin/flo-app.sh $file >& $file.appout)
+done