v5_6.vhd

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

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

entity V5_6 is
	port(DInA        : in  std_logic;
	     DInB        : in  std_logic;
	     TDOut       : out std_logic;
		 IDOut       : out std_logic);
end V5_6;

architecture behav of V5_6 is
		
begin
	
	IDOut <= DInA and DInB after 10 ns;
	TDOut <= transport (DInA and DInB) after 10 ns;
	
end behav;

⌨️ 快捷键说明

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