목차
1.순서(순차) 논리 회로의 개념
2.여러 순서 논리 회로의 VHDL 표현
3.Homwork
2.여러 순서 논리 회로의 VHDL 표현
3.Homwork
본문내용
Register 회로에 대한 표현
8-Bit Register의 Function Table
Architecture Unit에 대한 표현 (1)
- Conditional Signal Assignment를 이용한 표현으로 출력이 하나인 경우는 Process 구문보다 간결하다.
architecture RTL1 of REGISTER1 is
begin
REG <= (others=>’0’) when (RESET=’0’) else
LDDATA when (LD=’1’) else
REGIN when (ENABLE=’1’ and
(CLK=’0’ and CLK’event)) else
null;
end RTL1;
Architecture Unit에 대한 표현(2)
architecture RTL2 of REGISTER1 is
begin
process (RESET, LD, ENABLE, CLK)
begin
if RESET=’0’ then
REG <= (others =>’0’);
elsif LD=’1’ then
REG <= LDDATA;
elsif ENABLE=’1’ then
if (CLK=’0’ and CLK’event) then
REG <= REGIN;
end if;
end if;
end process;
end RTL2;
8-Bit Register의 Function Table
Architecture Unit에 대한 표현 (1)
- Conditional Signal Assignment를 이용한 표현으로 출력이 하나인 경우는 Process 구문보다 간결하다.
architecture RTL1 of REGISTER1 is
begin
REG <= (others=>’0’) when (RESET=’0’) else
LDDATA when (LD=’1’) else
REGIN when (ENABLE=’1’ and
(CLK=’0’ and CLK’event)) else
null;
end RTL1;
Architecture Unit에 대한 표현(2)
architecture RTL2 of REGISTER1 is
begin
process (RESET, LD, ENABLE, CLK)
begin
if RESET=’0’ then
REG <= (others =>’0’);
elsif LD=’1’ then
REG <= LDDATA;
elsif ENABLE=’1’ then
if (CLK=’0’ and CLK’event) then
REG <= REGIN;
end if;
end if;
end process;
end RTL2;
추천자료
정보처리기능사 필기 기출문제 (2002년 4월 7일 시행)
제어기에 대한 조사
스포츠에서의 조직의 효율적인 운영
AL6061합금의 시료에 따른 기계적 특성 변화 관찰
원형질 분리의 실험
파 이 프 라 인
플립플롭 및 래치
김남천의 <남매>의 분석과 교육적 활용
실험 15. D 래치 및 D 플립 결과보고서
[운영체제]쓰레드를 이용한 행렬곱셈
PLC의 출현배경과 정의, 공압유압차이, 밸브의 종류에 대해서
컴퓨터구 조화, 정익사 연습문제 솔루션
[인적자원관리]기업 리더십 사례
d_래치_및_d_플립-플롭-예비,결과보고서,래치로 SPDT 스위치의 되튐에 의한 영향을 제거하는 ...
소개글