⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ami_dec.vhd

📁 ami码编码
💻 VHD
字号:
-- 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -