update clock_control.v for lab4 Z710

This commit is contained in:
PurplePower
2024-11-19 01:17:53 +08:00
parent 3abdb32f47
commit e4a4c6bf20

View File

@@ -21,9 +21,9 @@
module clock_control( module clock_control(
input clk_in, input clock_in,
input enable_clk, input enable_clk,
output clk_out output reg clock_out
); );
assign clk_out = clk_in & enable_clk; assign clock_out = clock_in & enable_clk;
endmodule endmodule