Skip to content

Commit

Permalink
Moved back to x1 gain
Browse files Browse the repository at this point in the history
  • Loading branch information
jotego committed Nov 4, 2018
1 parent 71becda commit 347ff62
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions hdl/jt12_acc.v
Original file line number Diff line number Diff line change
Expand Up @@ -131,11 +131,11 @@ always @(posedge clk)
if( s2_enters ) begin
sum_all <= 1'b0;
// x1 volume
// left <= pre_left;
// right <= pre_right;
// x2 volume
left <= { pre_left [10:0], pre_left [10] };
right <= { pre_right[10:0], pre_right[10] };
left <= pre_left;
right <= pre_right;
// x2 volume: This will cause problems with some, like "Crying Asia senmei sensou", at the beginning of 1st level
//left <= { pre_left [10:0], pre_left [10] };
//right <= { pre_right[10:0], pre_right[10] };
`ifdef DUMPSOUND
$strobe("%d\t%d", right, right);
`endif
Expand Down

0 comments on commit 347ff62

Please sign in to comment.