mirror of
https://github.com/trabucayre/openFPGALoader.git
synced 2026-08-29 01:25:05 +02:00
12 lines
163 B
Verilog
12 lines
163 B
Verilog
module altclkctrl_inst (
|
|
input wire inclk,
|
|
input wire ena,
|
|
output wire outclk
|
|
);
|
|
altclkctrl u (
|
|
.inclk(inclk),
|
|
.ena(ena),
|
|
.outclk(outclk)
|
|
);
|
|
endmodule
|