fixex typo in clock_control.v

This commit is contained in:
PurplePower
2024-11-18 17:37:50 +08:00
parent eba44fe287
commit 28380be03b

View File

@@ -22,12 +22,12 @@
module clock_control(
input clk_in,
input clk_enalbe,
input clk_enable,
output clk_out
);
// original clock
assign clk_out = clk_in & clk_enalbe;
assign clk_out = clk_in & clk_enable;
endmodule