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

📄 muxf.vhd

📁 thats the CPU source made by JI FENG
💻 VHD
字号:
library ieee;use ieee.std_logic_1164.all;entity MUXF is    port (    MUXF_0     : in  std_logic_vector(15 downto 0);    MUXF_1     : in  std_logic_vector(15 downto 0);    MFsel : in  std_logic;    F     : out std_logic_vector(15 downto 0));end MUXF;architecture rtl of MUXF isbegin  -- rtl  process(MUXF_0,MUXF_1,MFsel)    begin    case MFsel is      when '0' => F<=MUXF_0 ;      when '1' => F<=MUXF_1;      when others => null;    end case;  end process;    end rtl;

⌨️ 快捷键说明

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