Forum Discussion
Altera_Forum
Honored Contributor
13 years ago --- Quote Start --- You use the create_generated_clock command create_generated_clock -name slow_clock -source sys_clock -divide_by 256 [get_registers slow_clock_register] --- Quote End --- Just be careful with this. The -clock option cannot actually take the name of a clock as an argument. You can use -clock [get_ports clk_25ns] instead. Also, since your counter is composed of multiple registers, make sure you specify the actual bit you want the clock tied to, e.g. [get_registers slow_clock_register[7]], or even more specific [get_pins slow_clock_register[7]|q].