Files
vortex/hw/rtl/interfaces/VX_fpu_to_cmt_if.v
2020-08-14 21:50:14 -07:00

16 lines
360 B
Verilog

`ifndef VX_FPU_TO_CMT_IF
`define VX_FPU_TO_CMT_IF
`include "VX_define.vh"
interface VX_fpu_to_cmt_if ();
wire valid;
wire [`ISTAG_BITS-1:0] issue_tag;
wire [`NUM_THREADS-1:0][31:0] data;
wire has_fflags;
fflags_t [`NUM_THREADS-1:0] fflags;
endinterface
`endif