Skip to content

Commit

Permalink
ym3438: fix fast envelope decoding
Browse files Browse the repository at this point in the history
  • Loading branch information
nukeykt committed Sep 2, 2023
1 parent 96e9d9b commit 585cd33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ym3438_eg.v
Original file line number Diff line number Diff line change
Expand Up @@ -306,8 +306,8 @@ module ym3438_eg

wire rate_sum_not_max = rate_sum_clamp[5:1] != 5'h1f;
wire rate_sum_12 = rate_sum_clamp[5:2] != 4'hc;
wire rate_sum_13 = rate_sum_clamp[5:2] != 4'he;
wire rate_sum_14 = rate_sum_clamp[5:2] != 4'hd;
wire rate_sum_13 = rate_sum_clamp[5:2] != 4'hd;
wire rate_sum_14 = rate_sum_clamp[5:2] != 4'he;
wire rate_sum_15 = rate_sum_clamp[5:2] != 4'hf;

wire rate_not_max_sr_o; // ~eg_maxrate[1]
Expand Down

0 comments on commit 585cd33

Please sign in to comment.