Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. module bstat_reader
  2. /*********************************************************************************************/
  3. #(parameter bsize = 5, fw_max = 1024)
  4. /*********************************************************************************************/
  5. (
  6.     input           clk,
  7.     input           reset,
  8.     output          [31: 0] avm_address,
  9.     input           [31: 0] avm_readdata,
  10.     output          avm_read,
  11.     input           avm_readdatavalid,
  12.     output          [10: 0] avm_burstcount,
  13.     output          avm_beginbursttransfer,
  14.     input           avm_waitrequest,
  15.     output          [3: 0] buf_sel,
  16.     output          buf_sw
  17. );
  18. /*********************************************************************************************/
  19. endmodule
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement