Altera_Forum
Honored Contributor
13 years agoAny approach to close clock toggle?
For a design, if I want to reduce power consumption, one approach is pausing the clock toggle for a module which does not need to work in a specific period. In the design, I can use a AND gate whose inputs are clk and enable as:
assign clkin=clk&&enable; but with this AND gate, the clock skew may be more serious and it will be more difficult to analyse. So I wonder whether there is a better approach to close the clock toggle but don't use the AND gate? Thanks.