Altera_Forum
Honored Contributor
13 years agoProper Use Of SOPC Builder Exports
Using Quartus 2/SOPC Builder/Compnent Builder to develop application on TerASIC DE2-115
Have developed two custom components. Component 1 contains an single bit export (output) that is connected to a D2 GPIO pin. This part works fine. Component 2 contains a single bit export (input) that I would like to tie to component 1's output. In my top level file I have: .output_from_the_component1 (GPIO[0]) .input_to_the_component1(.output_from_the_component1); When I compile, I get a "can't declare implicit net "output_from_the_compenet1" because the current value of default_nettype is none." This seems to imply that the net output_from_the_compenet1 isn't visible from the top level module although it is recognized in the first statement. Not sure I quite understand the syntax containing the period completely.l Would appreciate a little insight. Also, is the export mechanism the "best way" to make this connection (If so, guidance on the proper syntax would be appreciated). If not, what is the better way. Thanks in advance, ME