summaryrefslogtreecommitdiff
path: root/bin/floall.sh
diff options
context:
space:
mode:
authorjackbackrack2015-04-29 18:00:14 -0700
committerjackbackrack2015-04-29 18:00:14 -0700
commit5ea0f7b4bf444f7506fedb0c0db94a5e9bc88e4f (patch)
tree289e07101983fe9962d8c3134bec2dba19291028 /bin/floall.sh
parent6c75757f8ea0b1bd79576ba3e2dfb01f3d980997 (diff)
inline lits to avoid cross module lit refs and fix scripts
Diffstat (limited to 'bin/floall.sh')
-rwxr-xr-xbin/floall.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/floall.sh b/bin/floall.sh
index 36f7119a..a07bebfd 100755
--- a/bin/floall.sh
+++ b/bin/floall.sh
@@ -3,5 +3,5 @@ shift 1
for file in "$@"; do
echo -n $file "-> "
- (cd generated; ../bin/fir2flo.sh $file > $file.out; grep "res = " $file.out)
+ (cd generated; ../chisel3/bin/fir2flo.sh $file > $file.out; grep "res = " $file.out)
done