📄 test1.vhd
字号:
LIBRARY ieee;
USE ieee.std_logic_1164.all;
USE ieee.std_logic_arith.all;
USE ieee.std_logic_unsigned.all;
entity test1 is
port
(
a:in std_logic_vector(7 downto 0);
--b:in std_logic_vector(0 to 7);
d:out std_logic_vector(7 downto 0)
-- e:out std_logic_vector(0 to 7)
);
end test1;
architecture test_a of test1 is
signal f: std_logic_vector(7 downto 0);
begin
process(a)
begin
f<="01010011";
d<=f;
end process;
end;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -