mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-24 22:07:41 -04:00
36 lines
No EOL
520 B
Verilog
36 lines
No EOL
520 B
Verilog
|
|
`include "VX_define.v"
|
|
|
|
`ifndef VX_FWD_RSP
|
|
|
|
`define VX_FWD_RSP
|
|
|
|
interface VX_forward_response_inter ();
|
|
|
|
wire src1_fwd;
|
|
wire src2_fwd;
|
|
wire[`NT_M1:0][31:0] src1_fwd_data;
|
|
wire[`NT_M1:0][31:0] src2_fwd_data;
|
|
|
|
// source-side view
|
|
modport snk (
|
|
input src1_fwd,
|
|
input src2_fwd,
|
|
input src1_fwd_data,
|
|
input src2_fwd_data
|
|
);
|
|
|
|
|
|
// source-side view
|
|
modport src (
|
|
output src1_fwd,
|
|
output src2_fwd,
|
|
output src1_fwd_data,
|
|
output src2_fwd_data
|
|
);
|
|
|
|
|
|
endinterface
|
|
|
|
|
|
`endif |