Files
kernels/hw/rtl/interfaces/VX_branch_ctl_if.v
2020-07-20 08:04:04 -04:00

15 lines
263 B
Verilog

`ifndef VX_BRANCH_RSP_IF
`define VX_BRANCH_RSP_IF
`include "VX_define.vh"
interface VX_branch_ctl_if ();
wire valid;
wire [`NW_BITS-1:0] warp_num;
wire taken;
wire [31:0] dest;
endinterface
`endif