Why is the functionality of my VHDL-2008 conditional signal assignment incorrect? - Why is the functionality of my VHDL-2008 conditional signal assignment incorrect? Description Due to a problem in the Quartus® Prime Pro Edition Software, you might see that the following code is not implemented correctly. example_process : process (clk) begin if rising_edge(clk) then signal_1 <= input_a; signal_1 <= input_b when select_signal; end if; end process example_process; This should create a registered mux but instead creates a register with input_b connected to D input and select_signal used as the enable. This code is only valid in VHDL-2008. Resolution To work around this problem, use this code instead. example_process : process (clk) begin if rising_edge(clk) then signal_1 <= input_b when select_signal else input_a; end if; end process example_process; Custom Fields values: ['novalue'] Troubleshooting 18033690396 False ['novalue'] ['FPGA Dev Tools Quartus® Prime Software Pro'] 24.1 22.4 ['Programmable Logic Devices'] ['novalue'] ['novalue'] ['novalue'] - 2024-04-07

external_document