19 lines
373 B
Verilog
19 lines
373 B
Verilog
`ifndef VX_GPR_READ_IF
|
|
`define VX_GPR_READ_IF
|
|
|
|
`include "VX_define.vh"
|
|
|
|
interface VX_gpr_read_if ();
|
|
|
|
wire [4:0] rs1;
|
|
wire [4:0] rs2;
|
|
wire [`NW_BITS-1:0] warp_num;
|
|
wire is_jal;
|
|
wire[31:0] curr_PC;
|
|
|
|
wire [`NUM_THREADS-1:0][31:0] a_reg_data;
|
|
wire [`NUM_THREADS-1:0][31:0] b_reg_data;
|
|
|
|
endinterface
|
|
|
|
`endif |