Intel® Quartus® Prime Software
Intel® Quartus® Prime Design Software, Design Entry, Synthesis, Simulation, Verification, Timing Analysis, System Design (Platform Designer, formerly Qsys)
16606 Discussions

Warning (14130): Reduced register with stuck data_in port to GND

Altera_Forum
Honored Contributor II
1,182 Views

Hi, 

 

I am getting the warning of Reduced register with stuck data_in port to GND for both "rx_start" and rx_stop" registers. How to work around this. what is the issue ?  

 

--------------------------------------------------------------------------- 

always@ (posedge clk) 

begin 

if(~reset ) 

begin 

rx_start <= 1'b0; 

rx_stop <= 1'b0; 

end 

 

else 

begin 

rx_start <= (scl_in && pre_scl && ~sda_in && pre_sda); 

 

rx_stop <= (scl_in && pre_scl && sda_in && ~pre_sda); 

end 

end 

----------------------------------------------------------------------
0 Kudos
0 Replies
Reply