aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug017/loop1.vhdl
blob: 137628d37d3fe1edd91948a97c4e9d6a5a7dde4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
entity loop1 is
end;

architecture behav of loop1 is
begin
  process
    variable i : natural := 0;
  begin
    report "hello";
    while i < 10 loop
      wait for 1 ns;
      report "hello2";
      i := i + 1;
    end loop;
    report "SUCCESS";
    wait;
  end process;
 
end behav;