Files
kernels/hw/rtl/interfaces/VX_ifetch_rsp_if.v
Blaise Tine 382585d33d minor update
2021-07-17 07:22:16 -07:00

17 lines
337 B
Verilog

`ifndef VX_IFETCH_RSP_IF
`define VX_IFETCH_RSP_IF
`include "VX_define.vh"
interface VX_ifetch_rsp_if ();
wire valid;
wire [`NUM_THREADS-1:0] tmask;
wire [`NW_BITS-1:0] wid;
wire [31:0] PC;
wire [31:0] data;
wire ready;
endinterface
`endif