Advertisement
Sidsh

interface.sv

Oct 29th, 2022 (edited)
1,028
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. interface our_interface (input logic clk);      //signals coming from outside like top module, defined as input/output like this
  2. logic [7:0]input_1;
  3. logic [7:0]input_2;
  4.  
  5. logic [15:0]output_3;
  6. endinterface
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement