Altera_Forum
Honored Contributor
12 years agoInitial Register Value
Hi Guys,
I would like to ask the next question. The first one: Is it synthesizeable to determine value, such as 50000(integer), during reset (one step before "clk'event and clk..." line)? *** if(reset = '1') then conter <= 50000; elsif(clk'event and clk = '1') then ........ ........ ........ end if; *** The second one: Is it synthesizeable to determine value, such as 50000(integer), as an initial value of the signal that declarated as an integer. **** signal counter1 :integer range 0 to 50000 := 50000; **** Thanks