TrickyDicky
Advanced Member level 7
- Joined
- Jun 7, 2010
- Messages
- 7,110
- Helped
- 2,081
- Reputation
- 4,181
- Reaction score
- 2,048
- Trophy points
- 1,393
- Activity points
- 39,769
Ok, so I need to become bilingual, but this is just annoying me.
Can someone give me the SV equivolent of this VHDL:
I dont want to make the process sensitve to clock and reset, I would like it a process with no sensitivity list. If I can get my head around this, then stimulus generation should make more sense to me. This format allows much easier behavioural modelling.
Can someone give me the SV equivolent of this VHDL:
Code:
signal ENDSIM : boolean := false;
process
begin
my_sig1 <= '0';
my_sig2 <= '1';
wait until reset = '0';
while not ENDSIM loop
--play around with my_sig1 and my_sig2;
wait until rising_edge(clk);
end loop;
wait;
end process;
I dont want to make the process sensitve to clock and reset, I would like it a process with no sensitivity list. If I can get my head around this, then stimulus generation should make more sense to me. This format allows much easier behavioural modelling.