decoder2.vhd
来自「多个Verilog和vhdl程序例子」· VHDL 代码 · 共 18 行
VHD
18 行
-- 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 + =
减小字号Ctrl + -
显示快捷键?