You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
892 B
Coq

// 使ip<EFBFBD>?<EFBFBD><EFBFBD>?
module clk_wiz(
input wire sys_clk, // U18
input wire sys_rst, //J15
(*mark_debug="true"*)output wire clk_100m, // e19
output wire clk_100m_r, // d19 180<EFBFBD>?
(*mark_debug="true"*)output wire clk_50m, // a20
(*mark_debug="true"*)output wire clk_25m, // b19
(*mark_debug="true"*)output wire clk_15m // d20
);
wire locked; //
wire global_rst;
// , sys, 使<EFBFBD>?
// 使
assign global_rst = locked && sys_rst;
clk_wiz_0 u_clk_wiz_0(
.clk_in1(sys_clk),
.reset(!sys_rst),
.clk_out1(clk_100m),
.clk_out2(clk_100m_r),
.clk_out3(clk_50m),
.clk_out4(clk_25m),
.clk_out5(clk_15m),
.locked(locked)
);
endmodule