bonjour,
quand je compile ce programme, il y a beaucoup d'erreurs, est-ce que quelqu'un pourrait me corriger ce programme ?
il s'agit d'un composant avec 2 entrées de E et F et une sortie S.
architecture h of ent is
begin
if (E="1000") then
if (F="1000") then
S<="0001";
elsif F="0100" then
S<="0010";
elsif F="0010" then
S<="0010";
else
s<="1111";
end if;
elsif E="0100" then
if F="1000" then
S<="0100";
elsif F="0100" then
S<="0101";
elsif F="0010" then
S<="0110";
else
S<="1110";
end if;
elsif E="0010" then
if F="1000" then
S<="0111";
elsif F="0100" then
S<="1000";
elsif F="0010" then
S<="1001";
else
S<="1101";
end if;
else
if F="1000" then
S<="1010";
elsif F="0100" then
S<="0000";
elsif F="0010" then
S<="1011";
else
S<="1100";
end if;
end if;
end h;
merci.
-----