update clock_contrl.v for lab4 Z710

This commit is contained in:
PurplePower
2024-11-19 01:29:05 +08:00
parent e4a4c6bf20
commit 5c930b046c

View File

@@ -23,7 +23,7 @@
module clock_control( module clock_control(
input clock_in, input clock_in,
input enable_clk, input enable_clk,
output reg clock_out output clock_out
); );
assign clock_out = clock_in & enable_clk; assign clock_out = clock_in & enable_clk;
endmodule endmodule