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

📄 mux2.vhd

📁 这是一个交织器/解交织器的FPGA实现
💻 VHD
字号:
library ieee;use ieee.std_logic_1164.all;use ieee.std_logic_arith.all;entity mux2 isgeneric(n:integer:=16);	port(d0:in std_logic_vector(7 downto 0);		  d1:in integer range 0 to n-1;		  sel:in std_logic;		  yout:out std_logic_vector(7 downto 0));end mux2;architecture if_march of mux2 is begin	process(d0,d1,sel)	begin		if(sel='1') then		yout<=conv_std_logic_vector(d1,8);		else		yout<=d0;		end if;	end process;	end if_march;

⌨️ 快捷键说明

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