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

📄 alu.vhd

📁 Xilinx Ise 官方源代码盘 第四章
💻 VHD
字号:
library IEEE;
use IEEE.std_logic_1164.all;
use IEEE.std_logic_unsigned.all;
entity alu is
 port (clk : in std_logic;
       a,b : in std_logic_vector(7 downto 0);
       opcode : in std_logic_vector(2 downto 0);
       outp : out std_logic_vector(7 downto 0)
 );

end alu;

architecture arch1 of alu is

begin

   process(clk)
    begin
	 if clk'event and clk='1' then
      case opcode is
			when "000" => outp <= a + b;
			when "001" => outp <= a - b;
			when "010" => outp <= a AND b;
			when "011" => outp <= a OR b;
			when "100" => outp <= NOT a;
		end case;
	  end if;
	end process;

end arch1;

⌨️ 快捷键说明

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