-

미리보기는
3 페이지 까지 제공됩니다.
-
판매가격
2,000원
- 같은분야 연관자료
-
- 보고서설명
- library ieee;
use ieee.std_logic_1164.all;
entity andgate is
port(
sw1 : in std_logic;
sw2 : in std_logic;
led : out std_logic);
end andgate;
architecture sample of andgate is
begin
led <= sw1 and sw2;
end sample;
- 본문일부/목차
- library ieee;
use ieee.std_logic_1164.all;
entity system is
port(k1,k2,k3 : in bit;
y_out : out bit);
end system;
architecture sample of system is
sgnal cn : bit ;
begin
cn <= k1 nand k2;
y_out <= cn xor k3;
end sample;
library ieee;
use ieee.std_logic_1164.all;
entity sys_var is
port (a, b, c : in bit;
y_out : out bit);
end sys_var;
architecture sample of sys_var is
begin
process (a, b, c)
variable temp : bit;
begin
temp :=1;
temp :=a and temp;
temp :=b and temp;
temp :=c and temp;
y_out <= temp;
end process;
end sample;
- 연관검색어
-
#논리게이트
- 보상규정 및 환불정책
-
· 해피레포트는 다운로드 받은 파일에 문제가 있을 경우(손상된 파일/설명과 다른자료/중복자료 등) 1주일이내 환불요청 시
환불(재충전) 해드립니다. (단, 단순 변심 및 실수로 인한 환불은 되지 않습니다.)
· 파일이 열리지 않거나 브라우저 오류로 인해 다운이 되지 않으면 고객센터로 문의바랍니다.
· 다운로드 받은 파일은 참고자료로 이용하셔야 하며,자료의 활용에 대한 모든 책임은 다운로드 받은 회원님에게 있습니다.
저작권안내
보고서 내용중의 의견 및 입장은 당사와 무관하며, 그 내용의 진위여부도 당사는 보증하지 않습니다.
보고서의 저작권 및 모든 법적 책임은 등록인에게 있으며, 무단전재 및 재배포를 금합니다.
저작권 문제 발생시 원저작권자의 입장에서 해결해드리고 있습니다.
저작권침해신고 바로가기