1--  GHDL Run Time (GRT) - Common display subprograms.
2--  Copyright (C) 2002 - 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 Grt.Signals; use Grt.Signals;
24with Grt.Types; use Grt.Types;
25
26package Grt.Disp is
27   --  Display SIG number.
28   procedure Put_Sig_Index (Sig : Sig_Table_Index);
29
30   --  Disp current time and current delta.
31   procedure Disp_Now;
32
33   procedure Disp_Propagation_Kind (Kind : Propagation_Kind_Type);
34
35   --  Disp signals propagation order.
36   procedure Disp_Signals_Order;
37
38   --  Disp mode.
39   procedure Disp_Mode (Mode : Mode_Type);
40
41   --  Disp value (numeric).
42   procedure Disp_Value (Value : Value_Union; Mode : Mode_Type);
43
44end Grt.Disp;
45