implement.sh

来自「基于xilinx vierex5得pci express dma设计实现。」· Shell 代码 · 共 63 行

SH
63
字号
#!/bin/sh# Clean up the results directoryrm -rf resultsmkdir results#Synthesize the Wrapper Filesecho 'Synthesizing example design with XST';xst -ifn xst.scrmv xilinx_pci_exp_1_lane_ep.ngc ./results/endpoint_blk_plus_v1_5_top.ngccd resultsecho 'Running ngdbuild'ngdbuild \  -verbose \  -uc ../../example_design/xilinx_pci_exp_blk_plus_1_lane_ep-XC5VLX50T-FF1136-1_ES.ucf \  endpoint_blk_plus_v1_5_top.ngc \  -sd ../../../echo 'Running map'map \  -timing \  -ol high \  -xe c \  -pr b \  -o mapped.ncd \  endpoint_blk_plus_v1_5_top.ngd \  mapped.pcfecho 'Running par'par \  -ol high \  -xe c\  -w mapped.ncd \  routed.ncd \  mapped.pcfecho 'Running trce'trce \  -u \  -v 100 \  routed.ncd \  mapped.pcfecho 'Running design through netgen'netgen  \  -sim  \  -ofmt verilog \  -ne \  -w \  -tm xilinx_pci_exp_1_lane_ep \  -sdf_path ../../implement/results \  routed.ncdecho 'Running design through bitgen'bitgen \  -w routed.ncdcd ..make_ace.sh

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?