refactor interfaces

This commit is contained in:
Blaise Tine
2020-04-16 10:40:40 -04:00
parent 31f906f9fd
commit 460aabf6b1
33 changed files with 146 additions and 240 deletions

View File

@@ -1,10 +1,9 @@
`include "../VX_define.vh"
`ifndef VX_DRAM_REQ_RSP_INTER
`define VX_DRAM_REQ_RSP_INTER
`include "../VX_define.vh"
interface VX_dram_req_rsp_inter #(
parameter NUM_BANKS = 8,
parameter NUM_WORDS_PER_BLOCK = 4) ();
@@ -20,8 +19,6 @@ interface VX_dram_req_rsp_inter #(
wire[NUM_BANKS - 1:0][NUM_WORDS_PER_BLOCK-1:0][31:0] i_m_readdata;
wire i_m_ready;
endinterface
`endif