mirror of
https://github.com/vortexgpgpu/vortex.git
synced 2025-04-22 04:47:56 -04:00
23 lines
No EOL
315 B
Systemverilog
23 lines
No EOL
315 B
Systemverilog
`ifndef VX_JOIN_IF
|
|
`define VX_JOIN_IF
|
|
|
|
`include "VX_define.vh"
|
|
|
|
interface VX_join_if ();
|
|
|
|
wire valid;
|
|
wire [`NW_BITS-1:0] wid;
|
|
|
|
modport master (
|
|
output valid,
|
|
output wid
|
|
);
|
|
|
|
modport slave (
|
|
input valid,
|
|
input wid
|
|
);
|
|
|
|
endinterface
|
|
|
|
`endif |