VerilogDoxygenTest
 All Classes Files Variables
xor2.v
Go to the documentation of this file.
1 
3 
4 
6 
7 module XOR2 ( OUT, I0, I1 );
8  input I0;
9  input I1;
10 
11 
12  output OUT;
13 
14  assign OUT = I0 ^ I1;
15 endmodule