From 888bc47cd529a09bf6303e335ae1c6ccf2fa6df0 Mon Sep 17 00:00:00 2001 From: Imants Pulkstenis Date: Mon, 25 Nov 2019 21:10:31 +0200 Subject: [PATCH] effect mixer update --- effect_mixer.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/effect_mixer.v b/effect_mixer.v index 178abf0..527f10a 100644 --- a/effect_mixer.v +++ b/effect_mixer.v @@ -101,7 +101,7 @@ always @(posedge clk ) begin r_data_norm <= r_data_add[data_width-1: 0]; end 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 endcase r_next <= OUTPUT;