FixitFast
Junior Member level 2
- Joined
- Feb 6, 2013
- Messages
- 20
- Helped
- 0
- Reputation
- 0
- Reaction score
- 0
- Trophy points
- 1,281
- Activity points
- 1,462
hi all
my question is based on following code snippet that I have seen on the 3rd party development kit I am using
so what will synthesize of the following statement in the above snippet
What I want to know is the timing.
my question is based on following code snippet that I have seen on the 3rd party development kit I am using
Code:
...
...
case reset_state_r is
...
...
when RESET_DISABLE_CLK =>
en_clk_off_cnt_r <= (en_clk_off_cnt_r + '1') after (100)*1 ps;
if (TO_INTEGER(unsigned(en_clk_off_cnt_r)) = (EN_CLK_OFF_CNT - 1)) then
reset_state_r <= RESET_DEASSERT_RST after (100)*1 ps;
end if;
...
...
so what will synthesize of the following statement in the above snippet
Code:
en_clk_off_cnt_r <= (en_clk_off_cnt_r + '1') after (100)*1 ps;