blob: 0054dc8f6be6d1b8359fac98a6eaaaa98fee4045 (
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
|
#-- Synplicity, Inc.
#-- Synplify version 5.3.2
#-- Project file C:\_prossn\cpld.nao\address_decoder.tc_
#-- Written on Thu Nov 23 11:54:34 2017
#device options
set_option -technology mach
set_option -part MACH111
#add_file options
add_file -vhdl -lib work "address_decoder.vhd"
#compilation/mapping options
set_option -default_enum_encoding onehot
set_option -symbolic_fsm_compiler false
set_option -resource_sharing true
#map options
set_option -frequency 0.000
set_option -fanin_limit 20
set_option -max_terms_per_macrocell 16
set_option -map_logic false
set_option -area_delay_percent 0
set_option -top_module ADDRESS_DECODER
#simulation options
set_option -write_verilog true
set_option -write_vhdl true
#automatic place and route (vendor) options
set_option -write_apr_constraint true
#MTI Cross Probe options
set_option -mti_root ""
#set result format/file last
project -result_file "address_decoder.edi"
|