You are on page 1of 1

module bc12(a,b,k1,k2,k3,k4);

input k1,k2,k3,k4;
output a,b;
assign a=k1&k2;
assign b=(k2&k3)|k4;
endmodule

You might also like