ami_dec.vhd

来自「ami码编码」· VHDL 代码 · 共 21 行

VHD
21
字号
-- implementation of the AMI decoder. entity ami_dec is	port (	clr_bar, 	e0, e1      : in    bit; -- inputs.	s           : out   bit  -- output.	);end ami_dec; architecture behaviour of ami_dec isbegin     process (e0, e1, clr_bar) begin     		if (clr_bar = '0')then			s <= '0'; 		end if; 		s <=  e0 or e1;      end process; end behaviour; 

⌨️ 快捷键说明

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