minor update
This commit is contained in:
@@ -4,17 +4,17 @@
|
||||
`include "../cache/VX_cache_define.vh"
|
||||
|
||||
interface VX_mem_req_if #(
|
||||
parameter LINE_WIDTH = 1,
|
||||
parameter DATA_WIDTH = 1,
|
||||
parameter ADDR_WIDTH = 1,
|
||||
parameter TAG_WIDTH = 1,
|
||||
parameter LINE_SIZE = LINE_WIDTH / 8
|
||||
parameter DATA_SIZE = DATA_WIDTH / 8
|
||||
) ();
|
||||
|
||||
wire valid;
|
||||
wire rw;
|
||||
wire [LINE_SIZE-1:0] byteen;
|
||||
wire [DATA_SIZE-1:0] byteen;
|
||||
wire [ADDR_WIDTH-1:0] addr;
|
||||
wire [LINE_WIDTH-1:0] data;
|
||||
wire [DATA_WIDTH-1:0] data;
|
||||
wire [TAG_WIDTH-1:0] tag;
|
||||
wire ready;
|
||||
|
||||
|
||||
@@ -4,12 +4,12 @@
|
||||
`include "../cache/VX_cache_define.vh"
|
||||
|
||||
interface VX_mem_rsp_if #(
|
||||
parameter LINE_WIDTH = 1,
|
||||
parameter DATA_WIDTH = 1,
|
||||
parameter TAG_WIDTH = 1
|
||||
) ();
|
||||
|
||||
wire valid;
|
||||
wire [LINE_WIDTH-1:0] data;
|
||||
wire [DATA_WIDTH-1:0] data;
|
||||
wire [TAG_WIDTH-1:0] tag;
|
||||
wire ready;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user