代码拉取完成,页面将自动刷新
#!/bin/zsh
# --- Assumptions ---
# Clock: clock@3ns
# File: *.ngc all in same directory..
# Results: stored in ./results
# Board: ML605 - Virtex-6 LX240T FPGA
# test if we're passing argument to script..
if ((${+1}))
then
else
echo "Usage: xilinxcorecompile.sh <top-level-entity-name> <clk-name>";
exit;
fi
${2:=clk}
# clean results..
rm -rf results
mkdir results
cd results
rm -f $1.scr
cp -f ~/bin/xilinxcompile.xcf ../$1.xcf
sed -i "s/\$2/$2/g" ../$1.xcf
# copy any Coregen cores
cp ../*.ngc .
# compile and map through the steps of xilinx flow..
ngdbuild -verbose $1.ngc #-uc ../$1.ucf
map -u -timing -ol high -pr b -o mapped.ncd $1.ngd mapped.pcf
par -ol high -w mapped.ncd $1.ncd mapped.pcf
trce -u -v 100 $1.ncd
cd ..
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。