Altera_Forum
Honored Contributor
13 years agoHow can i tie an input port of my top module to a fixed value using the tool settings
Hi all,
I have a signal as an input port from the top which will give a reset value to registers at reset. suppose an example like if(rst_n==1'b0) begin x<=a; else x<=s; Now tool is converting this register into a latch and in the timing reports the path consists of a loop. the tool also issues a warning of a combinational loop for this signal. So i want to tie this signal (a) which is an input port of my system to some value in order to tell the tool that it will have a static value and not a variable one, which the tool is understanding . So any qsf assignment if known do help me out.