码迷,mamicode.com
首页 > 编程语言 > 详细

用VHDL语言编写时序电路

时间:2019-11-09 19:35:53      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:vhd   logic   rar   entity   sig   arch   vhdl   log   RoCE   

触发器:

(1)D锁存器

library ieee;

use ieee.std_logic_1164.all;

entity dff1 is

port(clk:in std_logic;

d:in std_logic;

q:out std_logic

);

end;

architecture bhv of dff1 is

signal q1:std_logic;

process(clk)

begin

if clk‘event and clk=‘1‘

then q1<=d;

end if;

q<=q1;

end process;

end bhv;

法2:

library ieee;

use ieee.std_logic_1164.all;

entity test1 is

port(

clk,d:in bit;

q:out bit

);

end;

architecture bhv of test1 is

begin

process(clk,d)

begin

if rising_edge(clk) then q<=d;

end if;

end process;

end bhv;

 

 

用VHDL语言编写时序电路

标签:vhd   logic   rar   entity   sig   arch   vhdl   log   RoCE   

原文地址:https://www.cnblogs.com/lhkhhk/p/11827370.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!