본문 바로가기
전자/전기전자

VHDL 예제

by Begi 2021. 4. 3.
반응형

VHDL은 크게 Entity declaration와 Architecture description으로 구성된다. Entity는 외부 인터페이스를 기술하고 Architecture에 실행 코드를 기술한다.

 

AND 로직을 VHDL로 구현한 코드는 다음과 같다.

 

library ieee;
use ieee.std_logic_1164.all;

 

--------------------------------------------

-- Entity declaration
--------------------------------------------

entity AND1 is
port( 

        x: in std_logic;
        y: in std_logic;
        F: out std_logic
);
end AND1;  

--------------------------------------------

-- Architecture description
--------------------------------------------

architecture behav1 of AND1 is
begin
    process(x, y)
    begin
        if ((x='1') and (y='1')) then
             F <= '1';
        else
             F <= '0';
        end if;
    end process;
end behav1;

 

반응형

'전자 > 전기전자' 카테고리의 다른 글

마이크로 컴퓨터와 마이컴  (0) 2021.04.04
VHDL 소개  (0) 2021.04.04
센스등 원리  (0) 2021.04.02
전류 프로브 구조  (0) 2021.04.02
디가우싱  (0) 2021.04.01

댓글