TA147

Ejecicios y trabajos prácticos de la materia Taller de Sistemas Digitales (TA147)
Index Commits Files Refs
vhdl/basics/wait_for/wait_for_tb.vhd (204B)
   1 entity wait_for_tb is
   2 end entity;
   3 
   4 architecture wait_for_arq of wait_for_tb is
   5 begin
   6     process is
   7     begin
   8 
   9         report "Hello, World!";
  10         wait for 500 ms;
  11 
  12     end process;
  13 end architecture;