andmen.vhd
来自「用FPGA实现数字复接?肍PGA实现数字复接」· VHDL 代码 · 共 15 行
VHD
15 行
library ieee ;
use ieee.std_logic_1164.all ;
entity andmen is
port(in1,in2,in3,in4:in std_logic;
outp:out std_logic
);
end andmen;
architecture behv of andmen is
begin
outp<=in1 and in2 and in3 and in4;
end behv;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?