Comparan bit a bit dos operandos.
Notación idéntica a operadores reductores (unarios).
~
(NOT bitwise)
&
(AND bitwise)
|
(OR bitwise)
^
(XOR bitwise)
^~
, ~^
(XNOR bitwise)
Ejemplo
module and2 (
input [1:0] a, b,
output [1:0] c
);
assign c = a & b;
endmodule //and2