Files
kernels/hw/rtl/interfaces/VX_gpr_data_if.v
2020-04-20 15:07:27 -04:00

14 lines
218 B
Verilog

`ifndef VX_gpr_data_INTER
`define VX_gpr_data_INTER
`include "../VX_define.v"
interface VX_gpr_data_if ();
wire [`NUM_THREADS-1:0][31:0] a_reg_data;
wire [`NUM_THREADS-1:0][31:0] b_reg_data;
endinterface
`endif