+ Post New Thread
Results 1 to 4 of 4
-
11th October 2018, 17:08 #1
- Join Date
- Oct 2018
- Posts
- 2
- Helped
- 0 / 0
- Points
- 22
- Level
- 1
SYNOPSIS - Clock creation and delivery to submodules
Hi Everyone,
I'm trying to synthetize my circuit composed by several submodules and I've created a clock using <create_clock -name "CLK" -period 5 CLK> in my very top level, but when i go inside a submodule and go to check the clock there the shell says that the current design has no clock constrain, as it is not connect from the top level. Should I create a clock for each submodule or is this behavior normal?
thank to everyone
-
Advertisment
-
12th October 2018, 09:41 #2
- Join Date
- Jan 2008
- Location
- Germay
- Posts
- 1,178
- Helped
- 255 / 255
- Points
- 7,936
- Level
- 21
- Blog Entries
- 1
Re: SYNOPSIS - Clock creation and delivery to submodules
Should I create a clock for each submodule or is this behavior normal?
1. Have you simulated your design correctly?
1. Recheck you constraining.
3. For more help the constraint file commands will be needed.FPGA enthusiast!
-
Advertisment
-
12th October 2018, 17:21 #3
- Join Date
- Oct 2018
- Posts
- 2
- Helped
- 0 / 0
- Points
- 22
- Level
- 1
Re: SYNOPSIS - Clock creation and delivery to submodules
Yes, I mean when I simulate before the synthesis circuit works correctly. Also when I try to <report_clocks> from the top level it gives the name of the clock that I've created before, but when I write in dc_shell:
Code:<current_design 'mySubModule'> <report_clock>
-
Advertisment
-
15th October 2018, 08:05 #4
- Join Date
- Oct 2018
- Posts
- 6
- Helped
- 3 / 3
- Points
- 80
- Level
- 1
Re: SYNOPSIS - Clock creation and delivery to submodules
Hi kls,
Current design basically "switches" to another design, and does not go deeper into the hierarchy. What you should be using instead is "current_instance top/hier_you_are_interested/module"
+ Post New Thread
Please login