]> rtime.felk.cvut.cz Git - fpga/virtex2/msp_motion.git/blob - build/process.tcl
Whole "make process" with use of ISE project
[fpga/virtex2/msp_motion.git] / build / process.tcl
1 # xtclsh synthesize.tcl <project.ise> <process name>
2 #
3 # process name :
4 #   - "Synthesize - XST"
5 #   - "Implement Design"
6 #   - for other processes execute 'xtclsh' and type 'help'
7 #===============================================================================
8
9 if {$argc != 2} {
10     puts "ERROR: there is wrong number of arguments, see source file..."
11     exit 1
12 }
13
14
15 project open [lindex $argv 0]
16
17 process run [lindex $argv 1]
18
19 project close
20