4 lines
78 B
Coq
4 lines
78 B
Coq
|
module ClockOut(input CLK, output CLK_BIT);
|
||
|
assign CLK_BIT = CLK;
|
||
|
endmodule
|