28 lines
559 B
Verilog
28 lines
559 B
Verilog
`ifndef VX_MUL_REQ_IF
|
|
`define VX_MUL_REQ_IF
|
|
|
|
`include "VX_define.vh"
|
|
|
|
`ifndef EXT_M_ENABLE
|
|
`IGNORE_WARNINGS_BEGIN
|
|
`endif
|
|
|
|
interface VX_mul_req_if ();
|
|
|
|
wire valid;
|
|
wire [`ISTAG_BITS-1:0] issue_tag;
|
|
`DEBUG_BEGIN
|
|
wire [`NUM_THREADS-1:0] thread_mask;
|
|
wire [`NW_BITS-1:0] warp_num;
|
|
wire [31:0] curr_PC;
|
|
`DEBUG_END
|
|
wire [`MUL_BITS-1:0] mul_op;
|
|
|
|
wire [`NUM_THREADS-1:0][31:0] rs1_data;
|
|
wire [`NUM_THREADS-1:0][31:0] rs2_data;
|
|
|
|
wire ready;
|
|
|
|
endinterface
|
|
|
|
`endif |