Merge branch 'master' of ssh://git.joppeb.nl:222/joppe/fpga_modem

This commit is contained in:
2026-02-22 16:07:34 +01:00
17 changed files with 1004 additions and 17 deletions

15
sim/overrides/clk_gen.v Normal file
View File

@@ -0,0 +1,15 @@
`timescale 1ns/1ps
// =============================================================================
// Clock generator/PLL
// Simple direct generation for simulation purposes
// =============================================================================
module clk_gen(
input wire clk_in,
output wire clk_out_15
);
reg clk_15;
initial clk_15 <= 1'b0;
always #6.667 clk_15 <= !clk_15;
assign clk_out_15 = clk_15;
endmodule