I designed 7seg display driver in Verilog.
in xdc file, I define my clock as follows
set_property -dict {PACKAGE_PIN L12 IOSTANDARD LVCMOS33} [get_ports clk];
create_clock -add -name sysclk -period 20.000 -waveform {0.000 10.000} [get_ports clk];
L12 is WRCC Pin
and clk is my clock input pin in my RTL design
it does not seem clock is clocking..
Am I missing something?
Block design is not used.