What does the schematic looks like for the following verilog code?
module mystery2(s, c, x, y, z);
input x, y, z;
output s, c;
assign {c, s} = x + y + z;
endmodule
I know that {c, s}
means that they are concatenated, what does this looks like in schematics?
And x + y + z is just an add between the three inputs, right? And we have one wire coming out of it?