Forum Discussion
Altera_Forum
Honored Contributor
17 years agoA module can have multiple instances. I previously overlooked that you said to use verilog, so a component definition isn't needed. But a verilog module instance as a VHDL component instance always has an module indentifier, that references the name of the module and an arbitrary instance identifier. For a RAM it's the same as for a simple logic gate (from an Verilog Tutorial):
nand2 n1(in1, in2, out1);
nand2 n2(in3, in4, out2);