Experiment 1: Object

You might also like

Download as doc, pdf, or txt
Download as doc, pdf, or txt
You are on page 1of 4

Experiment 1

Object: Using Verilog HDL, verify the working of the following gates:i.

AND Gate

ii.

OR Gate

iii.

NOT Gate

iv.

XOR Gate

v.

NAND Gate

vi.

NOR Gate

vii.

EX-NOR Gate

Software Used:

XILINX ISE 8.2i

Theory:

Verilog Code :module a(input_1, input_2, and_out, or_out, not_out, nand_out, nor_out, xor_out, xnor_out);
input input_1;
input input_2;
output and_out;
output or_out;
output not_out;
output nand_out;
output nor_out;
output xor_out;
output xnor_out;
not(not_out,input_1);
and(and_out,input_1,input_2);
or(or_out,input_1,input_2);
nand(nand_out,input_1,input_2);
xor(xor_out,input_1,input_2);
nor(nor_out,input_1,input_2);
xnor(xnor_out,input_1,input_2);
endmodule

RTL Schematic:2

Simulation Waveforms:-

Conclusion: All the gates were designed using Verilog HDL and verified using ISE
Simulator.

You might also like