본문 바로가기 보조메뉴바로가기 대메뉴 바로가기

첨단과학기술 시대를 이끌어 나갈 공학도를 양성하는전자공학과 

본문 시작

 

시프트레지스터

  • 권오근
  • 조회 : 5565
  • 등록일 : 2008-12-02
LIBRARY ieee;
USE ieee.std_logic_1164.all;
USE ieee.std_logic_arith.all;

Entity Shift_reg1 Is
Port(Pin_in, CLK : In std_logic;
Pin_out : Out std_logic;
Q : Buffer std_logic_vector(3 downto 0));
End Shift_reg1;

Architecture Exm_Model Of Shift_reg1 Is
Component D_FF
Port( D, CLK : In std_logic;
Q : Out std_logic);
End Component;
Begin
U3: D_ff Port Map(Pin_in,CLK,Q(3));
U2: D_ff Port Map(Q(3),CLK,Q(2));
U1: D_ff Port Map(Q(2),CLK,Q(1));
U0: D_ff Port Map(Q(1),CLK,Q(0));
Pin_out <= Q(0);
End Exm_Model;

--------- D F/F -------------------------------
LIBRARY ieee;
Use ieee.std_logic_1164.all;

Entity D_FF Is
Port(D, CLK : In std_logic;
Q : Out std_logic);
End D_FF;

Architecture Exm_Model Of D_FF Is
Begin
Process(CLK,D)
Begin
If CLK"EVENT and CLK="1" Then
Q <= D;
End If;
End Process;
End Exm_Model;

만족도조사
만족도 조사 이 페이지에서 제공하는 정보에 대하여 만족하시나요?