Syntax in the instantiation of a component
I'm utilizing a peer's program for counting coincidences of photons between different sources. There are a few components that we can call "XXXX" for example. The instantiation of these components are as follows:
X0 : XXXX
X1 : XXXX
X2 : XXXX
and so on.
When I try to simulate the circuit with modelsim, I receive a warning that each instance of instantiation is not bound (code vsim-3473). I believe the reason I receive this warning because the instantiation does not explicitly match the component, so modelsim doesn't recognize that the two relate. How do I fix this? Can I simply remove the X0, X1, X2, etc... or are they necessary to the program? each instantiation is correlated to a different input, so I feel removing them might mess it up?
Very new to vdhl, so no answer is too simple. Thanks in advance!
Hi ,
Sorry for the late reply,
For Modelsim you have to Load ALTERA_MF library.
vsim -L altera_mf -L work rs232coincidencecounter
Which Should remove the ** Warning: (vsim-3473) Component instance "LC : LCELL" is not bound.
Attached the transcript.
Let me know if this has helped resolve the issue you are facing or if you need any further assistance.
Regards
Anand