Forum Discussion
Altera_Forum
Honored Contributor
12 years agoIf you instantiated SignalTap in your design directly using megawizard, you should be able to use the Input Port type still. In your simple case, you can connect NEW_DATA_PS to the storage_enable port. I tried it with a simple useless example as shown below and compiled successfully.
module one_wire (
input i,
output o
);
assign o = i;
stp_test stp_test_inst (
.acq_clk ( i ),
.acq_data_in ( {i} ),
.acq_trigger_in ( {i} ),
.storage_enable ( i )
);
endmodule What is it different from yours fundamentally?