Altera_Forum
Honored Contributor
17 years agoStrange Modelsim simulation result (undefined).
I got a strange simulation result.
Asserting Output in the simplest way MostSignificant(MSA) <= VectorOnes (MSA); -- MostSignificant(MSA) is output -- VectorOnes (MSA) in input The result in the simulation is undefined. -- Work around like that gets a reasonable result. PROCESS (VectorOnes) Variable MostSignificantMSA : STD_LOGIC ; BEGIN MostSignificantMSA := VectorOnes (MSA); MostSignificant(MSA) <= MostSignificantMSA; Who does know why the simplest way doesn't work?