将逻辑函数: F=A+B用VHDL语言表达出来。
时间: 2023-05-21 19:02:20 浏览: 180
基于VHDL的三角函数的实现
4星 · 用户满意度95%
entity logic_func is
port (A, B : in std_logic;
F : out std_logic);
end entity;
architecture behavior of logic_func is
begin
F <= A xor B;
end architecture;
阅读全文