removed redundant signals

This commit is contained in:
Kevin Kim 2024-06-28 22:13:35 -07:00
parent 6cb6ff429b
commit b04d387e7c
3 changed files with 0 additions and 7 deletions

View file

@ -108,7 +108,6 @@ localparam DIVBLEN = $clog2(DIVb+1); // enough bi
localparam INTRESBITS = XLEN + LOGR; // number of bits in a result: r integer + XLEN fractional
localparam INTFPDUR = (INTRESBITS-1)/RK + 1 ;
localparam INTDIVb = INTFPDUR*RK - LOGR;
localparam INTDIVBLEN = $clog2(INTDIVb+1);
// largest length in IEU/FPU
localparam BASECVTLEN = `max(XLEN, NF); // convert length excluding Zfa fcvtmod.w.d

View file

@ -200,8 +200,5 @@ localparam cvw_t P = '{
DURLEN : DURLEN,
DIVb : DIVb,
DIVBLEN : DIVBLEN,
INTRESBITS : INTRESBITS,
INTFPDUR : INTFPDUR,
INTDIVb : INTDIVb,
INTDIVBLEN : INTDIVBLEN
};

View file

@ -295,10 +295,7 @@ typedef struct packed {
int DIVb ;
int DIVBLEN ;
// integer division/remainder constants
int INTRESBITS ;
int INTFPDUR ;
int INTDIVb ;
int INTDIVBLEN ;
} cvw_t;