Commit 586c6dfa authored by Peter Jansweijer's avatar Peter Jansweijer

Avoid the generation of a latch during synthesis

parent 3a234452
Pipeline #4232 failed with stage
......@@ -158,7 +158,7 @@ begin -- syn
-- make the code more readable
ability_match <= an_rx_valid_i;
acknowledge_match <= an_rx_valid_i and an_rx_val_i(14);
consistency_match <= '1' when (an_rx_valid_i = '1' and rx_config_reg (15) = an_rx_val_i(15) and rx_config_reg(13 downto 0) = an_rx_val_i(13 downto 0));
consistency_match <= '1' when (an_rx_valid_i = '1' and rx_config_reg (15) = an_rx_val_i(15) and rx_config_reg(13 downto 0) = an_rx_val_i(13 downto 0)) else '0';
-- process: main auto-negotiation state machine. More or less compatible with
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment