2009. 6. 28. 15:05
Programming/Verilog(A)/SVerilog
우선 three state는
verilogout_no_tri = true
verilogout_equation = false 선언하시면 되구요(.synopsys_dc.setup)
feedthroughs는 compile전에 전체 design에 set_fix_multiple_port_nets -all -buffer_constants 를 해주시면 됩니다. top에서 하시면 top만 해결되구요 전체 sub까지 해주셔야 합니다.
TCL 예
========================================================
foreach_in_collection design [ get_designs "*" ] {
current_design $design
set_fix_multiple_port_nets -all -buffer_constants
}
current_design TOP
set_fix_multiple_port_nets -all -buffer_constants
========================================================
출처 : http://asicfpga.com/site_upgrade/asicfpga/bbs/viewbody.php?code=qna_asic_etc&page=5&number=323&keyfield=subject&key=c
'Programming > Verilog(A)/SVerilog' 카테고리의 다른 글
Netlist Connection Delete (0) | 2016.01.18 |
---|---|
Verilog Compile Error Check with the VIm (ncvlog) (0) | 2010.01.08 |
Verilog Port Mapping 쉽게 하기 (0) | 2009.06.18 |
VHDL entity를 Verilog에서 Instancation 정규식 이용하기 (1) | 2009.06.17 |
메모리에서 특정 비트만 읽기 (0) | 2009.05.12 |