added support for write-through cache, removed cache snooping support
This commit is contained in:
@@ -1,19 +0,0 @@
|
||||
`ifndef VX_CACHE_SNP_REQ_IF
|
||||
`define VX_CACHE_SNP_REQ_IF
|
||||
|
||||
`include "../cache/VX_cache_config.vh"
|
||||
|
||||
interface VX_cache_snp_req_if #(
|
||||
parameter DRAM_ADDR_WIDTH = 0,
|
||||
parameter SNP_TAG_WIDTH = 0
|
||||
) ();
|
||||
|
||||
wire valid;
|
||||
wire [DRAM_ADDR_WIDTH-1:0] addr;
|
||||
wire invalidate;
|
||||
wire [SNP_TAG_WIDTH-1:0] tag;
|
||||
wire ready;
|
||||
|
||||
endinterface
|
||||
|
||||
`endif
|
||||
@@ -1,16 +0,0 @@
|
||||
`ifndef VX_CACHE_SNP_RSP_IF
|
||||
`define VX_CACHE_SNP_RSP_IF
|
||||
|
||||
`include "../cache/VX_cache_config.vh"
|
||||
|
||||
interface VX_cache_snp_rsp_if #(
|
||||
parameter SNP_TAG_WIDTH = 0
|
||||
) ();
|
||||
|
||||
wire valid;
|
||||
wire [SNP_TAG_WIDTH-1:0] tag;
|
||||
wire ready;
|
||||
|
||||
endinterface
|
||||
|
||||
`endif
|
||||
Reference in New Issue
Block a user