디지털 시스템 설계 및 실험 결과보고서
실험제목
Decorder, Encoder, Multiplexer
실험목표
Decoder : 2-to-4 line decoder 구현
2-to-4 line decoder를 이용하여 3-to-8 구현
3-to-8 2개 이용하여 4-to-16 구현
(시뮬레이션에선 4-to-16을, COMBO에서는 3-to-8을 할 예정)
Encoder : 16-to-4 encoder 구현
Multiplexer : 2-to-1 MUX 구현
2-to-1 MUX 3개 이용하여 4-to-1 MUX 구현
4-to-1 MUX 4개 이용하여 16-to-4 MUX 구현
실험결과
2-to-4 line decoder 구현
코딩
module ttfd(A[0],A[1],D[0],D[1],D[2],D[3]);
output [3:0]D;
input [1:0]A;
wire [1:0]NA;
not (NA[0],A[0]);
not (NA[1],A[1]);
and (D[0],NA[0],NA[1]);
and (D[1],A[0],NA[1]);
and (D[2],NA[0],A[1]);
and (D[3],A[0],A[1]);
endmodule
시뮬레이션
00, 01, 10, 11 일 때 각 각 D[0],D[1],D[2],D[3]이 1이 된다.
2-to-4 line decoder를 이용하여 3-to-8 구현
코딩
module tted(A[0],A[1],A[2],D[0],D[1],D[2],D[3],D[4],D[5],D[6],D[7]);
output [7:0]D;
input [2:0]A;
wire [3:0] O;
not (NA,A[2]);
ttfd t1 (A[0],A[1],O[0],O[1],O[2],O[3]); /2 to 4 line decoder
.... |