14 lines
249 B
Verilog
14 lines
249 B
Verilog
`ifndef VX_CACHE_SNP_REQ_IF
|
|
`define VX_CACHE_SNP_REQ_IF
|
|
|
|
`include "../cache/VX_cache_config.vh"
|
|
|
|
interface VX_cache_snp_req_if ();
|
|
|
|
wire snp_req_valid;
|
|
wire [31:0] snp_req_addr;
|
|
wire snp_req_ready;
|
|
|
|
endinterface
|
|
|
|
`endif |