mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-23 21:39:10 -04:00
23 lines
No EOL
368 B
Systemverilog
23 lines
No EOL
368 B
Systemverilog
`ifndef VX_PERF_TEX_IF
|
|
`define VX_PERF_TEX_IF
|
|
|
|
`include "VX_define.vh"
|
|
|
|
interface VX_perf_tex_if ();
|
|
|
|
wire [`PERF_CTR_BITS-1:0] mem_reads;
|
|
wire [`PERF_CTR_BITS-1:0] mem_latency;
|
|
|
|
modport master (
|
|
output mem_reads,
|
|
output mem_latency
|
|
);
|
|
|
|
modport slave (
|
|
input mem_reads,
|
|
input mem_latency
|
|
);
|
|
|
|
endinterface
|
|
|
|
`endif |