aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/vivado/table.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/vivado/table.sh')
-rw-r--r--scripts/vivado/table.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/vivado/table.sh b/scripts/vivado/table.sh
index 190ef3f..f81f586 100644
--- a/scripts/vivado/table.sh
+++ b/scripts/vivado/table.sh
@@ -1,8 +1,8 @@
#!/bin/bash
dashes="----------------------------------------------------------------"
-printf '| %-20s | %-10s | %-20s |\n' "Device" "Speedgrade" "Clock Period (Freq.)"
-printf '|:%.20s |:%.10s:| %.20s:|\n' $dashes $dashes $dashes
+printf '| %-25s | %-10s | %-20s |\n' "Device" "Speedgrade" "Clock Period (Freq.)"
+printf '|:%.25s |:%.10s:| %.20s:|\n' $dashes $dashes $dashes
for x in $( grep -H . tab_*/results.txt )
do
@@ -15,5 +15,5 @@ do
xcvu) d="Xilinx Virtex UltraScale" ;;
esac
speedtxt=$( printf '%s.%s ns (%d MHz)' ${speed%?} ${speed#?} $((10000 / speed)) )
- printf '| %-20s | %-10s | %20s |\n' "$d" "-$grade" "$speedtxt"
+ printf '| %-25s | %-10s | %20s |\n' "$d" "-$grade" "$speedtxt"
done