seeker_123
Member level 2
- Joined
- Apr 8, 2013
- Messages
- 53
- Helped
- 1
- Reputation
- 2
- Reaction score
- 1
- Trophy points
- 1,288
- Location
- Bangalore
- Activity points
- 1,731
Hi everyone
I am looking for how simulation tool(modelsim) and synthesis tool maps RTL code.
In this I am not getting much information on how modelsim maps rtl code. How simulation model works ...?
can anybody help me in this ..?
Here is example like
so simulation model do something like this
can anyone explain me this point by providing some more example
thanks
I am looking for how simulation tool(modelsim) and synthesis tool maps RTL code.
In this I am not getting much information on how modelsim maps rtl code. How simulation model works ...?
can anybody help me in this ..?
Here is example like
Code:
always @(posedge clk)
begin
k2 <= k1;
k1 <= k2;
end
Code:
if(clk == posedge)
{
temp = k2;
k2 = k1;
k1 = temp;
}
can anyone explain me this point by providing some more example
thanks
Last edited by a moderator: