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

📄 ex_p5_13_complementer.vhd

📁 This is the course for VHDL programming
💻 VHD
字号:
entity xor2 is	   port(i1,i2: in BIT ;o : out BIT) ;	end xor2;architecture DF of xor2 isbegin	o<= i1 xor i2 after 5 ns;end DF;entity complementer is	   port( A: in BIT_VECTOR(7 downto 0);           complement: in BIT ;         B: out BIT_VECTOR(7 downto 0)) ;	end complementer;architecture struct of complementer is    component xor2        port (i1,i2: in BIT ; o: out BIT);    end component;begin	XOR_GEN:for i in 0 to 7 generate	   X:xor2 port map(A(i),complement,B(i));	end generate;end STRUCT;

⌨️ 快捷键说明

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