Forum Discussion
Altera_Forum
Honored Contributor
9 years ago --- Quote Start --- Would this be the 'initial' block?? Or is there something else? --- Quote End --- Synthesis tools do not support initial blocks very consistently. If you want to have an FPGA power-up with a particular value in a register you can assign that value during the initialization of the signal. For example; logic [31:0] regA = 32'h12345678; signal regA : std_logic_vector(31 downto 0) := X"12345678"; You can chose to override these values in the reset part of a clocked process. Cheers, Dave