19 lines
425 B
Verilog
19 lines
425 B
Verilog
`ifndef VX_EXU_TO_CMT_IF
|
|
`define VX_EXU_TO_CMT_IF
|
|
|
|
`include "VX_define.vh"
|
|
|
|
interface VX_exu_to_cmt_if ();
|
|
|
|
wire valid;
|
|
wire [`NW_BITS-1:0] wid;
|
|
wire [`NUM_THREADS-1:0] thread_mask;
|
|
wire [31:0] curr_PC;
|
|
wire [`NUM_THREADS-1:0][31:0] data;
|
|
wire [`NR_BITS-1:0] rd;
|
|
wire wb;
|
|
wire ready;
|
|
|
|
endinterface
|
|
|
|
`endif |