chroma.kr [Engineering][디지털 시스템 설계 및 experiment(실험)] Latch, Flip-Flop, Shift Register > chroma7 | chroma.kr report

[Engineering][디지털 시스템 설계 및 experiment(실험)] Latch, Flip-Flop, Shift Register > chroma7

본문 바로가기

chroma7


[[ 이 포스팅은 제휴마케팅이 포함된 광고로 커미션을 지급 받습니다. ]


[Engineering][디지털 시스템 설계 및 experiment(실험)] Latch, Flip-Flop, Shift Reg…

페이지 정보

작성일 23-01-21 12:52

본문




Download : [공학][디지털 시스템 설계 및 실험] Latch, Flip-Flop, Shift Register.hwp




실험과제/기타





디지털 시스템 설계 및 실험 결과보고서

실험題目
Latch, Flip-Flop, Shift Register
실험目標(목표)
1. SR NOR latch
2. Gated D latch(based on an SR NOR latch)
3. (Masterslave pulse-triggered) D flip-flop (with reset)
4. 4-bit shift register(using 4 D flip-flops)
실험결과
1. SR NOR latch

코딩

module (S,R,Q,Q_);
input S,R;
output Q,Q_;

nor (Q,R,Q_);
nor (Q_,S,Q);

endmodule

시뮬레이션
S가 1일 때 Q는1 R이 1일 때는 Q_는 0 S,R이 0일 때 불변 S,R이 1일 때는 definition 되지 않아 시뮬레이션 하지 않았다.

2. Gated D latch(based on an SR NOR latch)

코딩
module dl(D,C,Q,Q_);
input D,C;
output Q,Q_;
wire S,R;
wire ND;
not (ND,D);
and (R,ND,C);
and (S,D,C);

SR SR1 (S,R,Q,Q_);

endmodule

시뮬레이션

C가 1일 될 때 D의 내용이 출력되며 C가 0일 때는 출력값이 변하지 않는다.

3. (Master&slave pulse-triggered) D flip-flop (with reset)

코딩

module dppr(D,C,R,Q,Q_);
input D,C,R;
output Q,Q_;
wire Q1,Q1_;

dl dl1 (AD,NC,Q1,Q1_);
dl dl2 (Q1,C,Q,Q_);

wire NR;…(drop)



설명


[공학][디지털 시스템 설계 및 실험] Latch, Flip-Flop, Shift Register , [공학][디지털 시스템 설계 및 실험] Latch, Flip-Flop, Shift Register기타실험과제 , 공학 디지털 시스템 설계 실험 Latch Flip Flop Shift Register





Download : [공학][디지털 시스템 설계 및 실험] Latch, Flip-Flop, Shift Register.hwp( 40 )




공학,디지털,시스템,설계,실험,Latch,Flip,Flop,Shift,Register,기타,실험과제

순서

[공학][디지털%20시스템%20설계%20및%20실험]%20Latch,%20Flip-Flop,%20Shift%20Register_hwp_01.gif [공학][디지털%20시스템%20설계%20및%20실험]%20Latch,%20Flip-Flop,%20Shift%20Register_hwp_02.gif [공학][디지털%20시스템%20설계%20및%20실험]%20Latch,%20Flip-Flop,%20Shift%20Register_hwp_03.gif
[Engineering][디지털 시스템 설계 및 experiment(실험)] Latch, Flip-Flop, Shift Register

[Engineering][디지털 시스템 설계 및 experiment(실험)] Latch, Flip-Flop, Shift Register
다.
Total 6,724건 357 페이지

검색

REPORT 73(sv75)



해당자료의 저작권은 각 업로더에게 있습니다.

www.chroma.kr 은 통신판매중개자이며 통신판매의 당사자가 아닙니다.
따라서 상품·거래정보 및 거래에 대하여 책임을 지지 않습니다.
[[ 이 포스팅은 제휴마케팅이 포함된 광고로 커미션을 지급 받습니다 ]]

[저작권이나 명예훼손 또는 권리를 침해했다면 이메일 admin@hong.kr 로 연락주시면 확인후 바로 처리해 드리겠습니다.]
If you have violated copyright, defamation, of rights, please contact us by email at [ admin@hong.kr ] and we will take care of it immediately after confirmation.
Copyright © www.chroma.kr All rights reserved.