Design and Implementation of 3x8 Decoder
AIM:-To Design & Implement 3X8 DECODER program using Verilog HDL.
Objective: The main objective of this program is to learn how to use CASE statement writing test bench and verify the functionality of 3x8 decoder and must simulate, synthesize and view RTL schematics for the same.
TOOL:-Xilinx ISE 9.2i Version
FAMILY |
SPARTAN 3 |
Device |
XC3S400 |
Package |
PQ208 |
Speed |
-4/-5 |
Synthesis |
XST(VERILOG/VHDL) |
Simulator |
ISE Simulator
|
ARCHITECTURE:-
Truth Table:
A2 | A1 | A0 | EN | D0 | D1 | D2 | D3 | D4 | D5 | D6 | D7 |
0 | 0 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 |
0 | 0 | 1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 |
0 | 1 | 0 | 1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 |
0 | 1 | 1 | 1 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 |
1 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 |
1 | 0 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 |
1 | 1 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 |
1 | 1 | 1 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 |
SOURCE CODE:-
module decoder38(o,a,en);
input [2:0]a;
input en;
output [7:0] o;
reg [7:0] o;
always @ (a,en)
begin
if(en==1'b1)
case(a)
3'b000 : o=8'b00000001;
3'b001 : o=8'b00000010;
3'b010 : o=8'b00000100;
3'b011 : o=8'b00001000;
3'b100 : o=8'b00010000;
3'b101 : o=8'b00100000;
3'b110 : o=8'b01000000;
3'b111 : o=8'b10000000;
endcase
else
o=8'b00000000;
end
endmodule
TESTBENCH:-
module decoder38tb();
reg [2:0] a;
reg en;
wire [7:0] o;
decoder38 d1 (o,a,en);
initial begin
a=3'b000;
en=1'b1;
end
always #40 a[2]=~a[2];
always #20 a[1]=~a[1];
always #10 a[0]=~a[0];
always #80 en=~en;
initial #160 $stop;
endmodule
SIMULATED WAVEFORMS:-
RTL SCHEMANTIC:-
SYNTHESIS REPORT:-
TIMING REPORT:-
DEVICE UTILIZATION SUMMARY:-
SYNTHESIS DIAGRAM:-
CONCLUSION:-
The 3X8 Decoder was designed using Verilog HDL & implemented in FPGA Spartan 3 kit.
Viva Questions
-
What are four generations of Integration Circuits?
-
Give the advantages of IC?
-
Give the variety of Integrated Circuits?
-
Give the basic process for IC fabrication?
-
What are the various Silicon wafer Preparation?
-
List the libraries used in verilog.
-
What do you mean by RTL view.
-
What do you mean by synthesizable code.
-
State the difference between FPGA and CPLD.
-
What do you mean by CLB in FPGA.
Outcomes of Experiment: From this program students will expose how to use and where to use case statement
-
UpdatedNov 28, 2021
-
Views951
Design and implement the 8x1 MULTIPLEXER with 2x1 MULTIPLEXERs program using Verilog HDL
Design & Implement 8X1 MULTIPLEXER program using Verilog HDL
Design & Implement 4-BIT COMPARATOR program using Verilog HDL
Design & Implement JK-FLIP FLOP program using Verilog HDL
Design & Implement 8X3 ENCODER program using Verilog HDL
Design & Implement T-FLIPFLOP program using Verilog HDL