0
有人可以幫助我如何將此vhdl代碼更改爲使用'when'語句?如何更改爲何時聲明
下面是代碼我寫:
library IEEE;
use IEEE.std_logic_1164.all;
entity sel2_1 is
port(A, B, SEL : in std_logic;
outsgnl : out std_logic);
end sel2_1;
architecture EX1 of sel2_1 is
begin
outsgnl <= (not SEL and A) or (SEL and B);
end EX1;
的模擬結果如下: simulation
我已經編輯了上面的問題,並把模擬結果。我試圖改變vhdl代碼使用時聲明和我期望相同的確切結果。 – HAKIM