sun_ray
Advanced Member level 3
- Joined
- Oct 3, 2011
- Messages
- 772
- Helped
- 5
- Reputation
- 10
- Reaction score
- 5
- Trophy points
- 1,298
- Activity points
- 6,828
What will following synthesize to?
always @ ( posedge clk or negedge rst)
begin
b <= a;
c <= b;
d = c;
end
always @ ( posedge clk or negedge rst)
begin
b <= a;
c <= b;
d = c;
end