Forum Discussion

IIvan3's avatar
IIvan3
Icon for New Contributor rankNew Contributor
7 years ago

Using interface in top-level module in Quartus 17.1

interface some_interface (input A, output B); endinterface module top_module (some_interface X) //assign X.A=1; assign X.B=1; endmodule I can not assign 1 to X.A because X.A is an input. Compi...