why this error happen?

Status
Not open for further replies.

JKR1

Junior Member level 3
Joined
Aug 24, 2015
Messages
29
Helped
0
Reputation
0
Reaction score
0
Trophy points
1
Activity points
208
hi
why this error happen?
 

This code describes a dual edge flip flop which cannot be done inside an fpga
 

"wait" statement cannot be synthesis ...

Yes it can, but its not the recommended style. The following will synthesise to a register:


Code VHDL - [expand]
1
2
3
4
5
process
begin
  wait until rising_edge(clk)
  q <= d;
end process;

 
Reactions: FvM

    FvM

    Points: 2
    Helpful Answer Positive Rating
Status
Not open for further replies.
Cookies are required to use this site. You must accept them to continue using the site. Learn more…