SSale9
New Contributor
7 years agoHow to see all inputs/outputs in node finder?
Right now I'm trying to create a system comprised of multiple modules (new to Verilog), and I can only ever see the nodes in the top-level entity when in the node finder. As an example, I have written something that follows the following structure:
module exampleMod1(a, b, c, d)
input a,b;
output c,d;
always @(posedge clk)
begin
//processing a and b
end
endmodule
module exampleMod2(e, f, g, h)
input e,f;
output g,h;
always @(posedge clk)
begin
//processing e and f
end
endmodule
module exampleMod3(i, j, k, l)
input i, j;
output k,l;
always @(posedge clk)
begin
//processing i and j
end
endmoduleHowever, if exampleMod1 is my top-level entity (I have selected it as such in the Assignments > Settings > General section) then when I proceed to the Node Finder in my .vwf file and select list, only the nodes in exampleMod1 are shown (a, b, c and d), since it is the top level module. This also means that I can't run a simulation properly, since I can't view the input that I want to as it is neither a or b. How can I correct this to see all inputs and outputs in the project?