create_wtut_vhd.tcl

来自「这是一份FPGA例程」· TCL 代码 · 共 27 行

TCL
27
字号
# Tcl script to run in the Xilinx Tcl shell or the ISE Tcl Console

# To run this script, type "source create_vtut_vhd.tcl" 
# at Tcl prompt.

# set up the project

project new wtut_vhd.ise
project set family Spartan3
project set device xc3s200
project set speed -4
project set package ft256
project set synthesis_tool "XST (VHDL/Verilog)"
project set generated_simulation_language "ISE Simulator (VHDL/Verilog)"
# add source files - 
xfile add clk_div_262k.vhd
xfile add debounce.vhd
xfile add led_control.vhd
xfile add statmach.vhd
xfile add stopwatch.vhd
xfile add dcm1.xaw
xfile add hex2led.vhd
xfile add ten_cnt.xco
xfile add time_cnt.vhd
xfile add stopwatch_tb.vhd
project close
project open wtut_vhd.ise

⌨️ 快捷键说明

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