Guest User

Untitled

a guest
Apr 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. 3: begin
  2. // scale factor LUT is now valid
  3. // continue group decoding
  4. div_a <= data_clip;
  5. div_b <= adj;
  6. //sample_1 <= data_clip % adj;
  7. //next_val <= data_clip / adj;
  8. samp_st <= 4;
  9. end
  10. 4: begin
  11. sample_1 <= div_rem;
  12. next_val <= div_quot;
  13. div_a <= div_quot;
  14. //sample_2 <= next_val % adj;
  15. samp_st <= 5;
  16. end
  17. 5: begin
  18. sample_2 <= div_rem;
  19. samp_st <= 6;
  20. end
  21. 6: begin
  22. // continue group decoding
  23. sample_3 <= div_quot;
  24. //sample_3 <= next_val / adj;
  25. // goto post-multiply
  26. samp_st <= 20;
  27. end
Add Comment
Please, Sign In to add comment