coshy
Member level 4
I'm trying to understand about create_generated_clock.
basically, create_generated_clock is defined as the following.
From Here, I'm confused that
what is "the get_clocks"and "get_pins" of master_clock?
I draw my understand of above. Is this correct?
basically, create_generated_clock is defined as the following.
create_generated_clock \
-name CLK_a \
-divided_by 1\
-source [git_pins CLK_b] \
-master_clock [get_clocks CLK_c] \
[get_pins CLK_d] -add -combinational
From Here, I'm confused that
what is "the get_clocks"and "get_pins" of master_clock?
Code:
+-----------+
| |
CLK_b ---->| |----> CLK_a
| |
CLK_c ---->| Clock |
| Generator|----> CLK_d
| |
+-----------+
I draw my understand of above. Is this correct?