Forum Discussion
shvlad
New Contributor
6 years agoIs it possible to create netlist for module which include one submodule like an RTL source?
For example, there is a tree: -top_module --submodule l1 ---submodule l2 ----submodule l3 -----submodule l4 ---submodule l2 ---submodule l2 --submodule l1 ---submodule l2 I want to pack all...
sstrell
Super Contributor
6 years agoIf you set l4 as a design partition, you can use the root partition reuse flow documented here:
You're basically locking down the I/O design and including all the other submodules in the root partition along with the I/O, leaving l4 as a "doughnut hole" in the middle. You then reuse the root partition with all the other submodules and put whatever you want in l4.
#iwork4intel
- shvlad6 years ago
New Contributor
It works! Thank you!