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

📄 decoder2.vhd

📁 多个Verilog和vhdl程序例子
💻 VHD
字号:
-- A simple 3to8 decoder that demonstrates
-- indexing  by a signal
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity decoder is
        port (inp:  in std_logic_vector(2 downto 0);
              outp: out std_logic_vector(7 downto 0));
end decoder;

architecture behave of decoder is
   begin
   process (inp) begin
      outp <= (others => '0');
      outp(CONV_INTEGER(inp)) <= '1';
   end process;
end behave;

⌨️ 快捷键说明

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