aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue613/ent.vhdl
blob: c912189eb05091487bc4b209d8062af6a7f61270 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity ent is
end entity;

architecture a of ent is
  constant SimulationTime_c  : time    := 10000 ms;
begin
  process begin
    report "Hello world" severity note;
    wait;
  end process;
end;