Advertisement
Guest User

Untitled

a guest
May 25th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. interface my_interface1
  2. // Some signals
  3. modport tb_to_dut (
  4. // Signal directions specified
  5. )
  6. endinterface
  7.  
  8. interface my_interface2
  9. // Some signals
  10. modport tb_to_dut (
  11. // Signal directions specified
  12. )
  13. endinterface
  14.  
  15. interface my_combined_interface
  16. my_interface1 inf1
  17. my_interface2 inf2
  18. endinterface
  19.  
  20. interface my_combined_interface
  21. my_interface1 inf1
  22. my_interface2 inf2
  23.  
  24. modport tb_to_dut (
  25. inf1.tb_to_dut,
  26. inf2.tb_to_dut
  27. )
  28. endinterface
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement