1--  GHDL Run Time (GRT) -  Modules.
2--  Copyright (C) 2005 - 2014 Tristan Gingold
3--
4--  This program is free software: you can redistribute it and/or modify
5--  it under the terms of the GNU General Public License as published by
6--  the Free Software Foundation, either version 2 of the License, or
7--  (at your option) any later version.
8--
9--  This program is distributed in the hope that it will be useful,
10--  but WITHOUT ANY WARRANTY; without even the implied warranty of
11--  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12--  GNU General Public License for more details.
13--
14--  You should have received a copy of the GNU General Public License
15--  along with this program.  If not, see <gnu.org/licenses>.
16--
17--  As a special exception, if other files instantiate generics from this
18--  unit, or you link this unit with other files to produce an executable,
19--  this unit does not by itself cause the resulting executable to be
20--  covered by the GNU General Public License. This exception does not
21--  however invalidate any other reasons why the executable file might be
22--  covered by the GNU Public License.
23with System.Storage_Elements; --  Work around GNAT bug.
24pragma Unreferenced (System.Storage_Elements);
25with Grt.Vcd;
26with Grt.Vcdz;
27with Grt.Vpi;
28with Grt.Fst;
29with Grt.Waves;
30with Grt.Vital_Annotate;
31with Grt.Disp_Tree;
32with Grt.Disp_Rti;
33with Grt.Psl;
34with Grt.Backtraces;
35
36package body Grt.Modules is
37   procedure Register_Modules is
38   begin
39      --  List of modules to be registered.
40      Grt.Disp_Tree.Register;
41      Grt.Vcd.Register;
42      Grt.Vcdz.Register;
43      Grt.Waves.Register;
44      Grt.Fst.Register;
45      Grt.Vpi.Register;
46      Grt.Vital_Annotate.Register;
47      Grt.Disp_Rti.Register;
48      Grt.Psl.Register;
49      Grt.Backtraces.Register;
50   end Register_Modules;
51end Grt.Modules;
52