Forum Discussion
Altera_Forum
Honored Contributor
17 years agoIf you want to pursue your current approach, try adding a (* keep *) attribute before your inverted signal declarations. This should keep the compiler from optimizing them away:
(* keep = 1 *) wire invert1; (* keep = 1 *) wire invert2; Jake