entityarchitecture3.py

Created by arthur-candillon

Created on May 02, 2024

591 Bytes


synchronisation de signaux externes.
Ecrire lentité et larchitecture 
d'un composant sync_inp destiné
à synchroniser sur front montant 
d'horloge les informations 
provenant des entrées externes. 
Il s'agit d'un verrou comme 
indiqué en cours de contrôle.

entity synch_inp is 
 Port ( clk : in STD_LOGIC; 
  async_i : in STD_LOGIC; 
  sync_o : out STD_LOGIC); 
end synch_inp; 

architecture Behavioral of synch_inp is 
begin 
  process (clk) 
  begin 
    if clk'event and clk='1' then 
      sync_o <= async_i; 
    end if; 
end process; 
end Behavioral;

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our cookies policy.