회원가입 ID/PW 찾기
AA

library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;

 

entity clk_60count is
port(clk : in std_logic;
        sec0 : out std_logic_vector(6 downto 0);
        sec1 : out std_logic_vector(6 downto 0));
end clk_60count;

 

architecture sample of clk_60count is
signal count : integer range 0 to 1000000;
signal one : std_logic_vector(3 downto 0);
signal ten : std_logic_vector(3 downto 0);

 

component segment
port(sw : in std_logic_vector(3 downto 0);
        seg : out std_logic_vector(6 downto 0));
end component;

 

for v0,v1 : segment use entity work. segment(sample);

 

begin
    p1 : process(clk)
    begin
        if(clk'event and clk = '1') then
            if(count = 1000000) then
                count <= 0;
            else
                count <= count + 1;
            end if;
        end if;
    end process;
 
 p2 : process(clk)
 begin
  if(clk'event and clk = '1') then
   if(count = 1000000) then
    count <= 0;
   else
    count <= count + 1;
   end if;
  end if;
 end process;
 
 p3 : process(clk)
 begin
  if(clk'event and clk = '1') then
   if(count = 1000000) then
    if(one = "1001") then
     if(ten = "0101") then
      ten <= "0000";
     else
      ten <= ten + 1;
     end if;
    end if;
   end if;
  end if;
 end process;
 
 v0 : segment port map(one,sec0);
 v1 : segment port map(ten,sec1);
 
end sample;

 

60초를 구현하는 소스라더군요. 컴포넌트로 세그먼트를 외부에서 불러올려고 하는데

 

세그먼트는 이렇게 불러와봤는데요.

 

전혀 반응이 없습니다.

 

library ieee;
use ieee.std_logic_1164.all;

entity segment is
port( sw : in std_logic_vector(3 downto 0);
   seg : out std_logic_vector(6 downto 0));
end segment;

architecture sample of segment is
 function dis_7_seg(x : std_logic_vector(3 downto 0)) return std_logic_vector is
  variable seg_decoder : std_logic_vector(6 downto 0);
 begin
  case x is
   when "0000" => seg_decoder := "0111111" ;
   when "0001" => seg_decoder := "0000110" ;
   when "0010" => seg_decoder := "1011011" ;
   when "0011" => seg_decoder := "1001111" ;
   when "0100" => seg_decoder := "1100110" ;
   when "0101" => seg_decoder := "1101101" ;
   when "0110" => seg_decoder := "1111101" ;
   when "0111" => seg_decoder := "0100111" ;
   when "1000" => seg_decoder := "1111111" ;
   when "1001" => seg_decoder := "1100111" ;
   when others => seg_decoder := "0000000" ;
  end case;
 return (seg_decoder);
 end dis_7_seg;
begin
 seg <= dis_7_seg(sw);
end sample;

 

뭐가 뭔지 이해도 잘 안되네요.

 

혹시 책이나,, 레포트 (유료) 괜찮은거 이해잘되는 것 있으면 추천부탁드립니다. 

댓글 0

하드웨어 설계 및 개발에 대하여 개발자들이 자유롭게 토론하는 공간입니다.
- Q&A, 자유주재 토론, 관련 정보 공유
- 분야 : 마이크로프로세서 응용, 전기/전자(아날로그/디지털) 회로 설계, C/C++ 프로그래밍, 펌웨어,
         PCB Artwork, 트러블슈팅 등 하드웨어 설계에 관한 전반인 내용
※ 게시글에 맞는 분류를 선택하여 글을 작성해 주시면 쾌적한 사이트 운영에 많은 도움이 됩니다.
※ 하드웨어 인사이트는 회원들간의 거래정보를 게재할 뿐이지, 그 어떤 책임과 의무도 가지지 않습니다.

search
번호 분류 제목 글쓴이 조회 수 날짜
145 Allegro & OrCAD HOTorcad 16.5 버젼 사용중인데..한글매뉴얼있으신분 ㅠ1 한준혁 2667 2012.11.28
144 Allegro & OrCAD HOT버전16.5에서 netlist시 fomatters >> pads2k.dll 선택항목 부재1 뽀리 1139 2012.11.01
143 Allegro & OrCAD HOTorcad 16.5 license manager 설치가 안되네요 ..ㅠ1 C_o 2406 2012.10.26
142 Allegro & OrCAD HOT(그려져 있는)orcad 회로에 라이브러리 복사 하기와 회로 복사 하는 방법 아시는분 ?1 천년미르 903 2012.10.04
141 Allegro & OrCAD HOTmentor -> OrCAD PCB Editor TSP 554 2012.09.24
140 Allegro & OrCAD HOTORCAD초보인데요ㅠㅠ 고수분들 ORCAD좀 질문할게요ㅠ1 하하하하히 2569 2012.09.02
139 Allegro & OrCAD HOTcadence allegro 크랙 파일 찾습니다.. 쉬리 805 2012.08.28
138 Allegro & OrCAD PCB editor는 빈페이지 같은거 없나요?1 아둘란 272 2012.08.17
137 Allegro & OrCAD HOTOrCAD 10.x version layout 관련 질문입니다..2 열혈공학도 601 2012.08.14
136 Allegro & OrCAD HOTOrCAD 9.3 찾고있습니다~~!!4 가을비 465 2012.06.21
135 Allegro & OrCAD HOTOrCAD 16.3 버전 크랙버전좀 보내주세요. 부탁드립니다.1 물어봐 4240 2012.05.15
134 Allegro & OrCAD HOTorcad16.3 소자 베타값 및 파라미터 값 설정에 대한 질문 당근이초소 689 2012.03.26
133 Allegro & OrCAD HOTOrcad 16.0 SHooTERS 설치법 질문2 메탈광 3323 2012.01.04
132 Allegro & OrCAD HOT부품핀에 패턴 연결에 대해 문의드립니다.1 start 951 2011.12.06
131 Allegro & OrCAD HOTpart를 수정하여 사용할수있는 방법?1 정상까지 가보자! 882 2011.11.20
130 Allegro & OrCAD HOTCapture CIS의 "Place database parts" 실행 시 나타나는 오류?? 시드라인 1887 2011.11.05
129 Allegro & OrCAD HOT윈7을 사용해서 10.5에서..1 카나데 1165 2011.10.29
128 Allegro & OrCAD HOTOR_CAD 레이아웃 치수보조선2 천상에서 2015 2011.09.17
127 Allegro & OrCAD HOTusb 3.0단자를 orcad로 그려 보려고합니다. 제이콥 1757 2011.09.06
126 Allegro & OrCAD HOTwindows7 으로 오늘 교체하고 orcad16.2 설차 방법 문의11 빼빼로 5816 2011.09.06
Prev 1 2 3 4 5 6 7 8 9 10 ... 12 Next
  • 네가 뿌린 일은 네게 되돌아 온다.
    - 맹자
  • * 납포인트 정보 *
  • 글 작성 : 3
  • 댓글 작성 : 1
  • 내 글이 추천받음 : 1
저작권법에 위배되는 콘텐츠는 등록 불가하며, 저작물에 대한 권리는 저작자에게 있습니다.
Copyright 2006-2021 © hardwareis.com, All rights reserved.