|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有账号?注册
x
由于工程比较大,每次修改程序后生成bit流都得几个小时,严重影响实验进度
所以想用命令行来实现设计流程
xilinx网站有ug628手册解释各个命令行命令
而且在ISE process窗口,运行过一次的程序 在design utilities里面可以看到view command line log file
打开后里面有五个命令
1. xst -intstyle ise -ifn "C:/Users/LQ/Desktop/YITAI/cx/cxmac/cxmac_example_design.xst" -ofn "C:/Users/LQ/Desktop/YITAI/cx/cxmac/cxmac_example_design.syr"
2. ngdbuild -intstyle ise -dd _ngo -sd ipcore_dir -nt timestamp -uc ipcore_dir/cxmac/example_design/cxmac_example_design.ucf -p xc6vlx240t-ff1156-1 cxmac_example_design.ngc cxmac_example_design.ngd
3. map -intstyle ise -p xc6vlx240t-ff1156-1 -w -logic_opt off -ol high -t 1 -xt 0 -register_duplication off -r 4 -global_opt off -mt off -ir off -pr off -lc off -power off -o cxmac_example_design_map.ncd cxmac_example_design.ngd cxmac_example_design.pcf
4. par -w -intstyle ise -ol high -mt off cxmac_example_design_map.ncd cxmac_example_design.ncd cxmac_example_design.pcf
5. trce -intstyle ise -v 3 -s 1 -n 3 -fastpaths -xml cxmac_example_design.twx cxmac_example_design.ncd -o cxmac_example_design.twr cxmac_example_design.pcf
后面应该还有个biggen的命令,我还没执行
请问如何将他们写成批处理文件?对批处理文件不太熟悉,有没有哪位大神可以教一下?
Q1:假如新建一个批处理文件,这个文件调用的这些命令应该是在ISE安装目录下bin下nt里面吧,而程序应该在另一个路径吧,批处理文件的路径是怎么弄的?
Q2:批处理文件放在工程目录里面运行吗
Q3:不懂的太多了 请赐教啊 |
|