Added missing signal modules

This commit is contained in:
2026-03-02 19:28:36 +01:00
parent 50f71a2985
commit 4e3521e94a
20 changed files with 795 additions and 67 deletions

View File

@@ -15,12 +15,12 @@ module tb_nco_q15();
wire out_en;
nco_q15 #(.CLK_HZ(120_000_000), .FS_HZ(40_000)) nco (
.clk (clk),
.rst_n (resetn),
.freq_hz(freq),
.sin_q15(sin_q15),
.cos_q15(cos_q15),
.clk_en (out_en)
.i_clk (clk),
.i_rst_n (resetn),
.i_freq_hz(freq),
.o_sin_q15(sin_q15),
.o_cos_q15(cos_q15),
.o_clk_en (out_en)
);
initial begin
@@ -39,4 +39,4 @@ module tb_nco_q15();
$finish;
end;
endmodule
endmodule