and2.vhd
来自「用VHDL语言实现的图像传感器TCD132D的时序驱动代码,时序精准!」· VHDL 代码 · 共 19 行
VHD
19 行
library IEEE;
use IEEE.STD_LOGIC_1164.all;
use IEEE.STD_LOGIC_ARITH.all;
use IEEE.STD_LOGIC_UNSIGNED.all;
entity and2 is
port(A:in STD_LOGIC;
B:in STD_LOGIC;
C:out STD_LOGIC);
end and2;
architecture BEHAVIORAL of and2 is
begin
C<=A and B;
end BEHAVIORAL;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?