Forum Discussion
Altera_Forum
Honored Contributor
13 years agoI'm not sure how it works in verilog, but in VHDL you would make an intermediate signal that would go to the input and output. Then you would map this signal to the GPIO.
For example: wire test_signal; .output_from_the_component1 (test_signal) .input_to_the_component1(test_signal); assign GPIO[0] = test_sginal;