summaryrefslogtreecommitdiff
path: root/bin/appall.sh
diff options
context:
space:
mode:
authorjackbackrack2015-04-29 11:23:55 -0700
committerjackbackrack2015-04-29 11:23:55 -0700
commita9e3ee45d9996696142c24d851d40220e39d557e (patch)
tree38605ef7c0fa426ee21d3902e722819ffd37b3bc /bin/appall.sh
parent8f8c9859813aadd16011b214f58b5acc0164ef36 (diff)
remove chisel3-tests dependency
Diffstat (limited to 'bin/appall.sh')
-rwxr-xr-xbin/appall.sh27
1 files changed, 3 insertions, 24 deletions
diff --git a/bin/appall.sh b/bin/appall.sh
index 0e676ed6..112b612b 100755
--- a/bin/appall.sh
+++ b/bin/appall.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"
-
-for file in $FILES; do
+shift 1
+
+for file in "$@"; do
echo $file
(cd generated; ../bin/flo-app.sh $file >& $file.appout)
done