Forum Discussion
Altera_Forum
Honored Contributor
18 years agoHi,
Under node finder in vwf, if you filter to "Registers post fitting", you can see that what you are look for is not there. This is because the registers have been compiled out by quartus. Scanning over your code I can see whats wrong is on line 75 Serial_Out_D[].clrn = GND; clrn is active low, so the Serial_Out_D reg is getting removed. This needs to be tied to VCC. After changing this, I can now see all the registers in simulation. Regards