mirror of
https://github.com/handsomezhuzhu/2025-yatcpu.git
synced 2026-02-20 20:10:14 +00:00
update clock_control.v for lab4 Z710
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user