Reevaluating Always blocks

S

Suresh V

Guest
Is there a way to reevaluate the always blocks(any always blocks)
through PLI ??

Please help on my query.

always@(a or b)
in = a or b;
end
 
On Jul 23, 7:46 pm, Suresh V <vsuresh...@gmail.com> wrote:
Is there a way to reevaluate the always blocks(any always blocks)
through PLI ??
I don't think so. It would require PLI to be able to change the
behaviour of the @() event control. The only way I can imagine
is by changing the value of one of the signals in the sensitivity
list, which would the give you untrustworthy results - you would
probably need to change it back again later, forcing a second
re-evaluation to get back to the right answers.

But I'm fascinated to know why you should want to
do that. What event or action would cause you to
require a new evaluation of the block?
--
Jonathan Bromley
 

Welcome to EDABoard.com

Sponsor

Back
Top