Advertisement
Guest User

Untitled

a guest
Jan 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. //-----------------+HDR----------------------//
  2. //
  3. //  module's name               : qpsk_mod
  4. //  file's name                 : qpks_mod.sv
  5. //  Language                    : SystemVerilog
  6. //  Author                      : Pedro Ishimaru
  7. //
  8. //  Description                 : This module performs Quadrature Phase Shift Keying Modulation over a 32-bits word
  9. //
  10. //
  11. //  Numerical Representation    :  Fixed point, 2b10b.
  12. //                                 Two's complement
  13. //------------------------------------------//
  14.  
  15.  
  16. module qpsk_mod
  17. (
  18.     clk_i,
  19.     rst_i,
  20.     enab_i,
  21.     sin_i,
  22.     cos_i,
  23.     word_i,
  24.    
  25.     mod_sig_o,
  26.     read_req_o,
  27.     done_o
  28. );
  29.  
  30. //  parameters
  31.  
  32.     parameter DATA_SIZE = 32;
  33.    
  34.    
  35.  
  36. //  port declaration
  37.  
  38.  
  39. //  signal declaration
  40.  
  41. //
  42.  
  43. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement