Forum Discussion
Altera_Forum
Honored Contributor
14 years agoHi Oliver,
if you have written your own code, e.g. in VHDL and you want to "Tap" signals which are resolved by the synthesis tool, you can use the attribute keep ! here is an example: --------------------------------------------------------- -- signal declarations --------------------------------------------------------- signal cnt : unsigned (3 downto 0); --------------------------------------------------------- -- attribute declarations --------------------------------------------------------- attribute keep : boolean; attribute keep of cnt : signal is true; now, the synthesis tool can't resolve this signal and you will find it in the node list.