v6_8.vhd

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

VHD
21
字号
library ieee;
use ieee.std_logic_1164.ALL;

entity V6_8 is
 port(Reset   : in  std_logic;
      Din	 : in std_logic;
      Dout	 : out std_logic);
end V6_8;

architecture a_clk of V6_8 is 

begin

	process
	begin
		wait on reset;
			Dout <= Din;
	end process;
	
end a_clk;

⌨️ 快捷键说明

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