Files
vortex/hw/rtl/interfaces/VX_cache_snp_req_if.v
2020-04-23 13:49:45 -04:00

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