Digital-Test/lsp/linter/child_2.v

8 lines
111 B
Verilog

module dependence_2 (
input a, b, c,
output Q
);
assign Q = a & b | ((b & c) & (b | c));
endmodule