Page 1/6 ---------------------------------------------------------------------
Page 1/6 ------------------------------------------------------------------------------------------------------------------------ Exercice n°1 : (03 points) Types de PLDs Indiquez, pour chacune des expressions suivantes, quelle technologie cible lui correspond le mieux dans la liste suivante: FPGA, CPLD, PAL, PLA, EPLD ou FPGA-plateforme(PSOC). 1. Dispositifs logiques programmables ayant la plus haute densité CPLD 2. Dispositifs logiques programmables complexes le plus souvent configurables via une mémoire vive statique FPGA 3. Dispositifs logiques programmables complexes plutôt combinatoires que séquentiels PLA 4. Dispositifs logiques programmables simples avec matrice-ET et matrice-OU programmables EPLD 5. Dispositifs logiques programmables complexes formés de ressources logiques programmables en plus de noyau(x) dur(s) de microprocesseur et / ou d’autres ressources spécialisées FPGA-plateforme(PSOC) 6. Dispositifs logiques programmables complexes dont les délais entrée-sortie sont prévisibles EPLD Exercice n°2 : (04 points) Modélisation et styles en VHDL Soit la description VHDL suivante: entity exercice2 port( x1, x2, x3, sel: in std_logic; y: out std_logic); end entity exercice2; architecture archi of exercice2 is signal a, b, c, d, e, f: std_logic; begin a <= x1 or x3; b <= x1 and x3; c <= x2 and a; d <= b or c; e <= x1 xor x2; f <= x3 xor e; P1: process (d, f, sel) begin if sel=’0’ then y <= d; else y <= f; end if; end process P1; end architecture archi; AU 2012/2013 sem 1 ISET DE GABES II N5 ENSEIGNANT : M. TAYARI LASSAAD CLASSE : AII51 DATE : Le 03 /01/2013 DUREE :1 h 30 mn DOCUMENTS :Non autorisés EXAMEN FPGA & DSP NOM :………….…………. PRENOM :…………………….. Page 2/6 ------------------------------------------------------------------------------------------------------------------------ 1) Tracez à partir d’éléments de base le schéma correspondant.(logigramme) a b c e d 0 X1 0 X2 0 X3 ? Y U1 XOR_2 U2 AND U3 AND U4 OR U5 XOR_2 U6 XOR_2 1 2 U7:A 7404 U8 AND U9 AND U10 OR 0 SEL P 2) Cette description est-elle structurale ou comportementale? Justifiez. Description comportementale car le système est décrit par des équations et des comportements 3) Le processus P1 est-il combinatoire ou séquentiel? Justifiez. Le processus P1 est-il combinatoire car il n’est pas par une horloge et ne contient pas des bascules. 4) Quel est selon vous la fonction de ce circuit? Additonneur complet 1 bit. Y=X1+X2+X3 si sel=0 et Y=Rentenu de X1+X2+X3 si sel=1 Ne rien écrire ici Page 3/6 Exercice n°3 : (04 points) Soit le programme ci-contre. Entity prog is port( A: in std_logic_vector(7 downto 0); B: in std_logic_vector(7 downto 0); S: in std_logic_vector(1 downto 0); R: out std_logic_vector(7 downto 0) ); End prog; Architecture behv of prog is process(A,B,S) begin case S is when "00" => R <= A + B; when "01" => R <= A - B; when "10" => R <= A and B; when "11" => R <= A or B; when others => R <= "XXXXXXXX "; end case; End process; End behv; 1) Dessiner un schéma synoptique pour ce circuit. 2) Quel est selon vous la fonction de ce circuit? Unité Arithmétique et Logique (UAL) Page 4/6 Exercice n°4 :(05 points) Pour le circuit ci-dessus compléter le programme VHDL correspondant ci-dessous? Library ieee ; Use ieee.std_logic_1164.all ; Entity exercice4 is port( A: in std_logic; B: in std_logic; SEL: in std_logic; CLK: in std_logic; O: out std_logic); End exercice4; Architecture behv of exercice4 is Signal S1,S2,S3 std_logic; begin S1<= A xor B; S2<= A and B; process(SEL) begin if SEL=’1’ then S3=S1; else S3<=S2; end if ; end process; process(CLK,S3) begin if (CLK'event and CLK=1 ) then O<=S3; end if; end process; end behv; O Page 5/6 Exercice n°5 :(04 points) Conception en VHDL Soit l’entité suivante: library ieee; use ieee.std logic_1164.all; use ieee.numeric_std.all; entity compteur port ( x: in std logic; y: out std_logic_vector(7 downto 0)); end entity compteur; 1) Dessiner un schéma synoptique pour ce circuit. 2) Ecrivez une description en VHDL comportemental à partir de cette entité qui compte les transitions montantes sur x et présente en tout temps le compte courant sur 8 bits à la sortie y. library ieee; use ieee.std logic_1164.all; use ieee.numeric_std.all; entity compteur port ( x: in std logic; y: out std_logic_vector(7 downto 0)); end entity compteur; Architecture behv of compteur is begin process(x,y) begin if (x'event and x=1 ) then y<=y+1; if(y=256) then y<=0; end if; end process; end behv; Page 6/6 3) Si on rajoute le port suivant: d: out std_logic; Quelle modification apporteriez-vous pour que d monte à ’1’ lorsqu’il y a débordement du compteur? (compteur > 255). (réécrire le programme) library ieee; use ieee.std logic_1164.all; use ieee.numeric_std.all; entity compteur port ( x: in std logic; d: out std_logic ; y: out std_logic_vector(7 downto 0)); end entity compteur; Architecture behv of compteur is begin process(x,y,d) begin if (x'event and x=1 ) then y<=y+1; if(y>255) then d<=1; end if; end process; end behv; Bonne Chance uploads/Philosophie/ corrige-examen-fpga-2012-2013 1 .pdf
Documents similaires
-
15
-
0
-
0
Licence et utilisation
Gratuit pour un usage personnel Attribution requise- Détails
- Publié le Oct 23, 2021
- Catégorie Philosophy / Philo...
- Langue French
- Taille du fichier 0.2833MB