Forum Discussion
Altera_Forum
Honored Contributor
14 years agoMy bidirectional primitive is
module bidir_io ( input wire in, input wire oe, output out, inout wire io ); assign io = oe ? in : 1'bz; assign out = io; endmodule I only use the 'out' to sense any changes to 'io' pin. So I'm not sure why the error points to 'io'.