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

📄 select_32.vhd.bak

📁 32位 2选1 选择器 VHDL语言程序
💻 BAK
字号:
library ieee;
use ieee.std_logic_1164.all;

entity select_32 is
	port(	A:in std_logic_vector(15 downto 0);
			B:in std_logic_vector(15 downto 0);
			S:in std_logic;
			Y:out std_logic_vector(15 downto 0));
end entity;

architecture bevi of select_32 is
	begin
	Y<=A when (S='0') else Y<=B;
end architecture;

⌨️ 快捷键说明

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