///////////////////////////////////////////

 // Module description of an Inverter

 // logic gate

 ///////////////////////////////////////////

 // Input:-  A

 // Output:- B

 ///////////////////////////////////////////

 

 module inverter_model(B, A);

 

 output B;

 input A;

 

 inv (B, A);

 

 endmodule