📄 v10_3.vhd
字号:
library ieee;
use ieee.std_logic_1164.all;
use ieee.std_logic_unsigned.all;
entity Add is
port(D1 : in std_logic_vector(7 downto 0);
D2 : in std_logic_vector(7 downto 0);
DO : out std_logic_vector(7 downto 0);
CE : in std_logic;
Clk : in std_logic);
end Add;
architecture A_Add of Add is
begin
process(Clk)
begin
if Clk = '1' and Clk'event then
if CE = '0' then
DO <= D1 + D2;
else
DO <= (others => '0');
end if;
end if;
end process;
end A_Add;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -