1entity wait1 is
2end;
3
4architecture behav of wait1  is
5begin
6  process
7  begin
8    report "hello";
9    wait for 1 ns;
10    report "SUCCESS";
11    wait;
12  end process;
13end behav;
14