Files
fpga-basics/Verilator_Tests/clk/top.v
2025-07-07 12:11:19 +01:00

7 lines
99 B
Verilog

module top (
input clk_25mhz,
output [3:0] led
);
assign led[0] = clk_25mhz;
endmodule