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

📄 and2.vhd

📁 fpga的应用
💻 VHD
字号:
library ieee;
use ieee.std_logic_1164.all;
entity andd is
  port(x,y:in std_logic;
       z:out std_logic_vector(1 downto 0));
end andd;
architecture andd of andd is
begin
    z<=x&y;
end andd;

⌨️ 快捷键说明

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