nand2/05_Computer_Architecture/Clock25_Reset20.v
Michael Schröder 971b323822 added v2.0
2023-01-11 23:04:57 +01:00

16 lines
339 B
Verilog

/**
* Uses CLK of 100MHz to generate:
* internal clock signal clk with 25MHz and
* a reset signal of approx. 20us length
*/
`default_nettype none
module Clock25_Reset20(
input CLK, // external clock 100 MHz
output clk, // internal clock 25 Mhz
output reset // reset signal approx. 20us
);
// Put your code here:
endmodule