Complete this form and hit the "Save Changes" button!
No ratings
Are you sure you want to delete this code? Please type DELETE in the box below to confirm.
Are you sure you want to verify this code?
Are you sure you want to publish this code?
Are you sure you want to unpublish this code?
Are you sure you want to autogenerate the summary + description for this code?
xxxxxxxxxx
module multilevel3(
input wire a,
input wire b,
output wire c
);
wire c1, c2, c3;
level1 l1a( a, b, c1 );
level1 l1b( a, ~b, c2 );
level1 l1c( ~a, b, c3 );
assign c = c1 ^ c2 ^ c3;
endmodule