Forum Discussion
Altera_Forum
Honored Contributor
14 years agoError (10686) Aggregate value
Hi, I am trying to use a reduction operator on a wire to check for zero. I used to do this all the time using model sim, but now it seems there is some problem with using any reduction operato...
Altera_Forum
Honored Contributor
14 years agoNot sure if this will fix your error, but I see one issues:
Change your always block from: // control logic block always @ ( Ctrl, A, B ) begin ... to // control logic block always @ ( * ) begin Your sensitivity list is incomplete, and can cause differences between synthesis and simulation..