oeconbus.vhd

来自「简单数字系统的VHDL代码」· VHDL 代码 · 共 18 行

VHD
18
字号
library IEEE;
use IEEE.std_logic_1164.all;

entity TRIBUF8 is port (
  ip: in std_logic_vector(7 downto 0);
  oe: in std_logic;
  op: out std_logic_vector(7 downto 0)
  );
end TRIBUF8;

architecture concurrent of TRIBUF8 is

begin

  op <= ip when oe = '1' else (others => 'Z');

end concurrent;

⌨️ 快捷键说明

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