How do I build on top of an IP generated example design?
I am building a project that uses an EMIF to push data from a transceiver to DDR3 memory. I took the following steps and now I am stuck:
- I generated the EMIF IP
- I generated the example design for said IP
- this created a series of files in qii and sim directories (I attached the document that I followed to accomplish this)
- This runs in modelsim simulation (:
THE PROBLEM: Now I want to pull in a FIFO, and 4 other IP components. The problem is that the file hierarchy of the generated example design is much different than the structure of a normal project. Namely, there is no apparent test bench and no IP folders in the top level like normal. This makes it so that pulling in IP components is a non-trivial task.
QUESTIONS: Is it possible to build off of an IP generated example and simulate it correctly in modelsim? what is the underlying mechanism for modelsim to run an example design ?(there is no testbench file) How would one add components to a generated IP example desing while maintaining the ability to simulate in Modelsim?