The Easiest Way to Save and Share Code Snippets on the web

test

vhdl

posted: Feb, 3rd 2012 | jump to bottom

-- Déclaration de l'entité
entity hello_world is
end entity hello_world;
 
-- Déclaration de l'architecture
architecture wiki of hello_world is
begin
  -- Process affiche_texte
  affiche_texte: process is
  begin
    -- Afficher la chaine de caractère "Hello world !" sur la sortie standard du simulateur
    report "Hello world !";
    -- Suspendre l'exécution du process
    wait;
  end process affiche_texte;
end architecture wiki;
77 views