summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorjackbackrack2015-04-29 18:00:14 -0700
committerjackbackrack2015-04-29 18:00:14 -0700
commit5ea0f7b4bf444f7506fedb0c0db94a5e9bc88e4f (patch)
tree289e07101983fe9962d8c3134bec2dba19291028 /bin
parent6c75757f8ea0b1bd79576ba3e2dfb01f3d980997 (diff)
inline lits to avoid cross module lit refs and fix scripts
Diffstat (limited to 'bin')
-rwxr-xr-xbin/appall.sh2
-rwxr-xr-xbin/floall.sh2
2 files changed, 2 insertions, 2 deletions
diff --git a/bin/appall.sh b/bin/appall.sh
index d8fa6a61..3c9054f1 100755
--- a/bin/appall.sh
+++ b/bin/appall.sh
@@ -3,5 +3,5 @@ shift 1
for file in "$@"; do
echo $file
- (cd generated; ../bin/flo2app.sh $file >& $file.appout)
+ (cd generated; ../chisel3/bin/flo2app.sh $file >& $file.appout)
done
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