Files
vortex/hw/rtl/interfaces/VX_branch_response_inter.v
2020-04-16 07:49:19 -04:00

18 lines
261 B
Verilog

`include "../VX_define.vh"
`ifndef VX_BRANCH_RSP
`define VX_BRANCH_RSP
interface VX_branch_response_inter ();
wire valid_branch;
wire branch_dir;
wire[31:0] branch_dest;
wire[`NW_BITS-1:0] branch_warp_num;
endinterface
`endif