entity Decode1 is
Port ( w : in STD_LOGIC;
x1 : out STD_LOGIC;
x2 : out STD_LOGIC);
end Decode1;
architecture Behavioral of Decode1 is
begin
process(w)
begin
if (w='1') then
x1 <= '0';
x2 <= '1';
else
x1 <= '1';
x2 <= '0';
end if;
end process;
end Behavioral;
เหยดดเข้ โหดสัส
ReplyDeleteธรรมด๊าาา ถถถ
Delete