Lv. 76 (전무보) 62,709 납
79%
Exp. 58,973/59,290 | 79%
회원가입 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
번호 분류 제목 글쓴이 조회 수 날짜
22 ECAD Simulation HOTPSpice로 이 회로를 만드는 방법1 -2420 622 2020.10.21
21 ECAD Simulation Pspice 소자문 질문입니다1 sfde 214 2020.09.08
20 ECAD Simulation 대역폭을 구하려고 하는데1 풍둥이 137 2016.10.19
19 ECAD Simulation HOTPspice로 서미스터 회로 도면 작성 중 질문드립니다. 풍둥이 417 2016.09.30
18 ECAD Simulation 회로시뮬레이션3 wjddmltn23 363 2014.05.07
17 ECAD Simulation oracad 라이브러리 질문입니다.1 웨라러브 343 2012.09.26
16 ECAD Simulation HOTorcad 소자 edit 하려는데요^^2 웨라러브 507 2012.07.26
15 ECAD Simulation HOTorcad pspice 질문입니다.3 강도랑 512 2012.05.15
14 ECAD Simulation HOTPspice에는 OTA소자가 없나요??1 조효 454 2012.02.29
13 ECAD Simulation Pspice에는 OTA소자가 없나요?? 조효 313 2012.02.29
12 ECAD Simulation HOTOTA소자 부품판매하나요?2 조효 514 2012.02.13
11 ECAD Simulation HOTPSPICE 질문좀 드릴께요1 WOW 1654 2010.10.14
10 ECAD Simulation HOTorcad 파형 볼때 counter.olb에 있는 라이브러리에 대해서요..1 노뜨라인 1731 2010.10.08
9 ECAD Simulation HOT이런 오류가 날때 어떻게 해야 하죠??? ㅠㅠ;;;4 owen 1110 2010.09.25
8 ECAD Simulation HOT회로자체가 구성이 안되는지 계속 오류가 납니다.(구형파-> 4017counter)2 노뜨라인 2392 2010.07.25
7 ECAD Simulation HOTDependent Source를 Psipce에 그리는방법...1 참치통조림 2285 2010.06.29
6 ECAD Simulation HOTPSPICE 소자값을 문자로 입력하기1 Glory 1995 2010.05.31
5 ECAD Simulation HOTpspice 버전 추천 좀2 circuit 1605 2010.03.15
4 ECAD Simulation HOT피스파이스 계단파 넣기 ch보자 2984 2010.03.13
3 ECAD Simulation HOT이전버전9.x, 10.x를 Vista나 XP에서 사용하기3 아크마 5579 2009.12.29
  • 오랜 약속보다 당장의 거절이 낫다.
    - 덴마크 격언
  • * 납포인트 정보 *
  • 글 작성 : 3
  • 댓글 작성 : 1
  • 내 글이 추천받음 : 1
저작권법에 위배되는 콘텐츠는 등록 불가하며, 저작물에 대한 권리는 저작자에게 있습니다.
Copyright 2006-2021 © hardwareis.com, All rights reserved.