v04-modify parameter position

This commit is contained in:
thfu 2024-11-28 17:19:18 +08:00
parent cbf8ab957e
commit aba2785320
1 changed files with 10 additions and 10 deletions

View File

@ -30,18 +30,18 @@
// Synthesizable (y/n):
// Other:
//-FHDR--------------------------------------------------------------------------------------------------------
parameter data_in_width = 16;
parameter max_coef_width = 32;
parameter frac_data_out_width = 20;//X for in,5
parameter frac_coef_width = 31;//division
parameter feedback_width = 36;
parameter data_out_width = 36;
parameter saturation_mode = 0;
parameter out_reg = 1;
module TailCorr_top
#(
parameter data_in_width = 16
,parameter max_coef_width = 32
,parameter frac_data_out_width = 20//X for in,5
,parameter frac_coef_width = 31//division
,parameter feedback_width = 36
,parameter data_out_width = 36
,parameter saturation_mode = 0
,parameter out_reg = 1
)
(
input clk,
input rstn,