test2.vhd
来自「matlab在fpga中的应用的三个具体事例」· VHDL 代码 · 共 14 行
VHD
14 行
--4.2.2 实体(Entity)
Entity test2 is
port(a : in std_logic;
b : buffer std_logic;
c : out std_logic
);
end test2;
architecture a of test2 is
begin
b <= not(a);
c <= b; --程序在此行没有出错
end a;
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?