23 lines
420 B
Verilog
23 lines
420 B
Verilog
|
|
|
|
|
|
`include "../VX_cache/VX_cache_config.v"
|
|
|
|
`ifndef VX_GPU_DRAM_DCACHE_RES
|
|
|
|
`define VX_GPU_DRAM_DCACHE_RES
|
|
|
|
interface VX_gpu_dcache_dram_res_inter
|
|
#(
|
|
parameter BANK_LINE_SIZE_WORDS = 2
|
|
)
|
|
();
|
|
// DRAM Rsponse
|
|
wire dram_fill_rsp;
|
|
wire [31:0] dram_fill_rsp_addr;
|
|
wire [BANK_LINE_SIZE_WORDS-1:0][31:0] dram_fill_rsp_data;
|
|
|
|
endinterface
|
|
|
|
|
|
`endif |