📄 output_design.vhd
字号:
--output design
--v0.1
library ieee;
use ieee.std_logic_1164.all;
entity output_design is
port(
sout0: in std_logic;
sout1: in std_logic;
sout2: in std_logic;
sout3: in std_logic;
dec_out: out std_logic
);
end output_design;
architecture a of output_design is
begin
dec_out<=(sout0 and sout1 and sout2) or (sout0 and sout1 and sout3)
or (sout1 and sout2 and sout3) or (sout0 and sout1 and sout2 and sout3);
end a;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -