代码拉取完成,页面将自动刷新
#!/bin/zsh
# test if we're passing argument to script..
if ((${+1}))
then
else
echo "Usage: xilinxcompile.sh <top-level-entity-name> <clk-name>";
exit;
fi
export PATH=$PATH:/opt/Xilinx/14.7/ISE_DS/ISE/bin/lin64
echo ${2:=clk}
# clean results..
rm -rf results_$1
mkdir results_$1
cd results_$1
cp ../$1.vhd .
cp ../$1.v .
cp $OHMYXILINX/testing.tcl $1.tcl
if [[ -f $1.vhd ]]; then
sed -i "s/\$1/$1.vhd/g" $1.tcl
fi
if [[ -f $1.v ]]; then
sed -i "s/\$1/$1.v/g" $1.tcl
fi
sed -i "s/\$2/$1/g" $1.tcl
touch sources.tcl
cp -f $OHMYXILINX/xilinxsolocompile.ucf constraint.ucf
sed -i "s/\$1/$1/g" constraint.ucf
# copy any Coregen cores
cp ../*.ngc .
# compile and map through the steps of xilinx flow..
xtclsh $1.tcl rebuild_project
cd ..
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。