I have Muxed clocks in my design.there is no relationship between these two clocks
I used create_clock to define the two clocks and I want to know that:
how should I define the clock at the output of the MUX should I use create_clock for this pin or create_generated_clock?
what about MUX select signal?
please help me to solve this problem that how can I synthesis and analyze this clock Muxing in DC_shell?
I have used set_case_analysis with "get_pins" because the mux select signal is generated internaly is this way ok?but when I want to specify the mux select signal input DC can't find that I found the mux select signal from the verilog netlist file after analyze and elaborate is this ok?
Ur sel_input is internally generated and DC cant find the pin.
I assume u did a top to bottom synthesis and ur clock_mux is one module.
2 modules:
1) top_mod
2) clock_mux
Therefore, ur current_design is top_mod. To assign set_case_analysis on the sel_pin, u must make clock_mux module as a current module and then set_case_analysis to sel_pin.