Xnorgate

2023. 6. 8. 22:58FPGA/HDLBits

728x90

Problem Statement

Create a module that implements an XNOR gate.

module top_module( 
    input a, 
    input b, 
    output out );
    assign out = a ^~ b;
endmodule

 


 

'FPGA > HDLBits' 카테고리의 다른 글

7458  (0) 2023.06.08
Wire decl  (1) 2023.06.08
Norgate  (0) 2023.06.08
Andgate  (0) 2023.06.08
Notgate  (0) 2023.06.08