You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
113 B

module clock(
input hlt,
input clk_in,
output clk_out
);
assign clk_out = (hlt) ? 1'b0 : clk_in;
endmodule