aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/elab-vhdl_values-debug.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-07-25 05:16:09 +0200
committerTristan Gingold <tgingold@free.fr>2022-07-25 05:16:09 +0200
commit54cf60d44d1110b127f6a81ee789eef4740630a1 (patch)
treefe159529cf9dfb1bbb1e06b619e89fc76cc6c6d8 /src/synth/elab-vhdl_values-debug.adb
parent4fb0f50bc59eac444acb171040964dc73d3d105f (diff)
downloadghdl-54cf60d44d1110b127f6a81ee789eef4740630a1.tar.gz
ghdl-54cf60d44d1110b127f6a81ee789eef4740630a1.tar.bz2
ghdl-54cf60d44d1110b127f6a81ee789eef4740630a1.zip
synth/elab-vhdl_values: add Value_Terminal
Diffstat (limited to 'src/synth/elab-vhdl_values-debug.adb')
-rw-r--r--src/synth/elab-vhdl_values-debug.adb4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/synth/elab-vhdl_values-debug.adb b/src/synth/elab-vhdl_values-debug.adb
index 0466bcde2..0d9e4923f 100644
--- a/src/synth/elab-vhdl_values-debug.adb
+++ b/src/synth/elab-vhdl_values-debug.adb
@@ -309,6 +309,10 @@ package body Elab.Vhdl_Values.Debug is
Put ("quantity ");
Put_Uns32 (Uns32 (V.Val.Q));
New_Line;
+ when Value_Terminal =>
+ Put ("terminal ");
+ Put_Uns32 (Uns32 (V.Val.T));
+ New_Line;
when Value_Alias =>
Put ("an alias: ");
Debug_Typ1 (V.Typ);