IMPORTANT NOTICE: Please be advised that the Verification Academy Forums will be offline for scheduled maintenance on Sunday, April 6th at 2:00 US/Pacific.
I’m getting a warning from the compiler about an illegal combination of procedural drivers for an interface signal. One of the drivers is the DUT, and the other driver is the clocking block defined inside the interface itself.
This interface defines the signaling for bidirectional communication between a source and a sink. For this warning, my DUT is the sink - but the compiler is complaining about the source clocking block. Even though the source clocking block is defined in the interface, I know it will never be used in this testbench. So do I just ignore the warnings? Or is there a better approach here that I’m not considering? I don’t want to add `ifdefs to the interface itself because 1. that’s gross, and 2. that’s not scalable to all of our interfaces.
I can’t just change the interface signals from variables (logic) to nets (wire) because the interface instantiates structs, which must encapsulate variables.