v6_0.vhd

来自「台湾全华科技VHDL教材实例」· VHDL 代码 · 共 28 行

VHD
28
字号
library ieee;
use ieee.std_logic_1164.all;

entity V6_0 is
	port(rst     : in  std_logic;
	     clk     : in  std_logic;
	     d       : in  std_logic;
	     ce      : in  std_logic;
		 q       : out std_logic);
end V6_0;

architecture behav of V6_0 is
		
begin
	
	ARstDFF : process(rst,clk) 
			  begin
				if rst = '0' then
					q <= '0';
				elsif clk = '1' and clk'event then
					if ce = '0' then
						q <= d;
 					end if;
 			    end if;
			  end process ARstDFF;
	
end behav;

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?