Forum Discussion
Altera_Forum
Honored Contributor
17 years agoThanks, I just also found out that I need to separate the interface declarations into two separate files each one with one output to be able to proceed in synthesis. So in the end I have:
if1.sv ======== interface if1... logic reset; modport rcv1 (output reset... ======= if2.sv ======== interface if2... logic reset; modport rcv2 (output reset...) ============ vs. before if.sv =========== interface if... logic reset; modport rcv1 (output reset...) modport rcv2 (output reset...) ========= Thanks for the prompt reply.