✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
D'après la déclaration des signaux ci dessous et des exemples fournis, choisissez l'instruction qui permet de réaliser la conversion STD_LOGIC_VECTOR --> INTEGER
Signal U: UNSIGNED(7 downto 0);
Signal S: SIGNED (7 downto 0);
Signal V: STD_LOGIC_VECTOR(7 downto 0);
Signal N: INTEGER;
Exemples :
U <= UNSIGNED(V); -- conversion STD_LOGIC_VECTOR à UNSIGNED
N <= TO_INTEGER(S); -- conversion SIGNED à INTEGER