effect mixer update

This commit is contained in:
Imants Pulkstenis
2019-11-25 21:10:31 +02:00
parent 11c36aec2d
commit 888bc47cd5
+1 -1
View File
@@ -101,7 +101,7 @@ always @(posedge clk ) begin
r_data_norm <= r_data_add[data_width-1: 0]; r_data_norm <= r_data_add[data_width-1: 0];
end end
3 : begin // no effect and clipping effect 3 : begin // no effect and clipping effect
r_data_norm <= r_data_add[data_width-1: 0] >>> 1; // Shift Right, Arithmetic (keep sign) r_data_norm <= r_data_add[data_width : 1] ; // Shift Right
end end
endcase endcase
r_next <= OUTPUT; r_next <= OUTPUT;