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

📄 mux2_1.vhd

📁 thats the CPU source made by JI FENG
💻 VHD
字号:
library ieee;use ieee.std_logic_1164.all;entity mux2_1 is    port (    port1 : in  std_logic;    port2 : in  std_logic;    Sel   : in  std_logic;    Gout  : out std_logic);end mux2_1;architecture rtl of mux2_1 isbegin  -- rtlprocess(sel,port1,port2)  begin  case sel is    when'0' => Gout <= port1 ;    when '1' => Gout <= port2;    when others => null;  end case;end process;end rtl;

⌨️ 快捷键说明

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