ibuf.vhd

来自「this program performs the functonality o」· VHDL 代码 · 共 21 行

VHD
21
字号
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;


--library UNISIM;
--use UNISIM.VComponents.all;

entity ibuf is
    Port ( i : in std_logic;
           o : out std_logic);
end ibuf;

architecture Behavioral of ibuf is

begin
	o <= i;

end Behavioral;

⌨️ 快捷键说明

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