Forum Discussion
Altera_Forum
Honored Contributor
16 years agoHow to wire to signal tap?
(* keep = 1 *) wire rx_bar_hit/* synthesis keep */;
assign rx_bar_hit = (rx_desc | rx_desc) ? 1'b1 : 1'b0;
But I can't add this signal to Siganl Tap. If I add this signal manualy (just type t...
Altera_Forum
Honored Contributor
16 years ago --- Quote Start --- Hi, it looks like that, but you can try to capture the wire signal with a register and preserve the register with "noprune". Kind regards GPK --- Quote End --- --- Quote Start --- (* keep = 1 *) wire rx_bar_hit; (* noprune *)reg rx_bar_hit_reg; always @ (posedge clk_in) begin rx_bar_hit_reg <= rx_bar_hit; end --- Quote End --- Worked. Thanks for all.