V
Verictor
Guest
Hi,
Given this model:
module finout(a, b, s, z);
input a;
inout b;
input s;
inout z;
assign z = (s) ? a : b;
endmodule
This can't be synthesized because z is an inout while a and b are not
the same type. Is there a way to have a synthesizable implementation?
Thanks.
Given this model:
module finout(a, b, s, z);
input a;
inout b;
input s;
inout z;
assign z = (s) ? a : b;
endmodule
This can't be synthesized because z is an inout while a and b are not
the same type. Is there a way to have a synthesizable implementation?
Thanks.