summaryrefslogtreecommitdiffstats
path: root/sw/cpld/ADDRESS_DECODER.TCL
blob: e83cb1f03a03b5e6ae9331e1c5224e1ee1e5d702 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#-- Lattice Semiconductor Corporation Ltd.
#-- Synplify OEM project file .\ADDRESS_DECODER.TCL
#-- Written on Thu Nov 23 11:54:33 2017


#-- begin a new section
project -new

#-- Device options
set_option -technology mach

#-- add_file options
add_file -vhdl -lib work "address_decoder.vhd"

#-- top module name
set_option -top_module ADDRESS_DECODER

#simulation options
set_option -write_verilog true
set_option -write_vhdl true

#-- set result format/file last
project -result_file "ADDRESS_DECODER.edi"

#-- error message log file
project -log_file ADDRESS_DECODER.log

#-- let's save it
project -save ADDRESS_DECODER.tc_

#-- run Synplify
project -run

#-- **************************************************

#-- exit from Synplify
exit