How to delay time in VHDL: Wait For

entity TO1_HelloWorldTb is
end entity;

architecture sim of TO1_HelloWorldTb is
begin

process is
begin
-- This is the start of the process "thread"

report "Hello World!";

wait for 10 ns;

-- The process will loop back to the start from here

end process;

end architecture;

Comments