Added Core Interface

This commit is contained in:
felsabbagh3
2020-03-03 22:14:56 -08:00
parent 57a96e02b1
commit 73cecd3866
8 changed files with 228 additions and 130 deletions

View File

@@ -0,0 +1,24 @@
`include "../VX_cache/VX_cache_config.v"
`ifndef VX_GPU_DCACHE_RES
`define VX_GPU_DCACHE_RES
interface VX_gpu_dcache_res_inter ();
// Cache WB
wire [`NUMBER_REQUESTS-1:0] core_wb_valid;
wire [4:0] core_wb_req_rd;
wire [1:0] core_wb_req_wb;
wire [`NW_M1:0] core_wb_warp_num;
wire [`NUMBER_REQUESTS-1:0][31:0] core_wb_readdata;
// Cache Full
wire delay_req;
endinterface
`endif