网址:https://hdlbits.01xz.net/wiki/Kmap3#
module top_module(
input a,
input b,
input c,
input d,
output out );
assign out = a | (~b & c); //b为无关项
endmodule
网址:https://hdlbits.01xz.net/wiki/Kmap3#
module top_module(
input a,
input b,
input c,
input d,
output out );
assign out = a | (~b & c); //b为无关项
endmodule