Forum Discussion
mohamis
New Contributor
3 years agoWhy do I get the following relsult in my FIR filter output
Hello,
I want to simulate my FIR filter in Verilog. But I get the wrong result. For example, when simulating a complete sinusoidal wave as input, I get the following result:
Here is...
- 3 years agoYou are using logical right shift for signed variables which corrupts the sign bit. Try arithmetic shift.
FvM
Super Contributor
3 years agoYou are using logical right shift for signed variables which corrupts the sign bit. Try arithmetic shift.