buff.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 buff is
    Port ( i : in std_logic_vector(3 downto 0);
           o : out std_logic_vector(3 downto 0));
end buff;

architecture Behavioral of buff is

begin
	o <= i;

end Behavioral;

⌨️ 快捷键说明

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