We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 71becda commit 347ff62Copy full SHA for 347ff62
hdl/jt12_acc.v
@@ -131,11 +131,11 @@ always @(posedge clk)
131
if( s2_enters ) begin
132
sum_all <= 1'b0;
133
// x1 volume
134
- // left <= pre_left;
135
- // right <= pre_right;
136
- // x2 volume
137
- left <= { pre_left [10:0], pre_left [10] };
138
- 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] };
139
`ifdef DUMPSOUND
140
$strobe("%d\t%d", right, right);
141
`endif
0 commit comments