The LRM says in 25.3, "If the actual of an interface port connection is a hierarchical reference to an interface ..., the hierarchical reference shall refer to an interface instance and shall not resolve through ... a generate block." What is the reason for this restriction ? Example: ///////////////////// Beginning of code /////////////////////// interface if1 (); endinterface module module1 (if1 if1_inst); endmodule module test(); generate for (genvar i=0; i<2; i++) begin : if_gen if1 if1_inst(); end endgenerate module1 module1_inst ( .if1_inst(if_gen[0].if1_inst) ); endmodule //////////////////////// End of code ///////////////////////// I saw 2 major compilers reject this code due to the above restriction. Thanks, Shalom --------------------------------------------------------------------- Intel Israel (74) Limited This e-mail and any attachments may contain confidential material for the sole use of the intended recipient(s). Any review or distribution by others is strictly prohibited. If you are not the intended recipient, please contact the sender and delete all copies. -- This message has been scanned for viruses and dangerous content by MailScanner, and is believed to be clean.Received on Sat Feb 21 23:54:09 2015
This archive was generated by hypermail 2.1.8 : Sat Feb 21 2015 - 23:54:21 PST