v04-eliminate warning

This commit is contained in:
thfu 2024-11-09 17:51:37 +08:00
parent 8fa46ded3a
commit 993ed34ee4
2 changed files with 2 additions and 3 deletions

View File

@ -36,9 +36,9 @@ module z_dsp
input clk, input clk,
input rstn, input rstn,
input en, //enable input en, //enable
input dac_mode_sel, //2'b00:NRZ mode;2'b01:Double data mode; input [1:0] dac_mode_sel, //2'b00:NRZ mode;2'b01:Double data mode;
//2'b10:Double Double data mode;2'b11:reserve; //2'b10:Double Double data mode;2'b11:reserve;
input [1:0] tc_bypass, input tc_bypass,
input [1:0] intp_mode, //2'b00:x1;2'b01:x2,'b10:x4;other:reserve; input [1:0] intp_mode, //2'b00:x1;2'b01:x2,'b10:x4;other:reserve;
input signed [15:0] din_re, input signed [15:0] din_re,
input signed [15:0] din_im, input signed [15:0] din_im,

View File

@ -46,7 +46,6 @@ reg [15:0] iir_in;
wire [1 :0] source_mode; wire [1 :0] source_mode;
wire [15:0] cos; wire [15:0] cos;
wire [15:0] sin; wire [15:0] sin;
wire [15:0] dout_p0;
reg en; reg en;