diff options
Diffstat (limited to 'src/simul/simul-vhdl_debug.adb')
-rw-r--r-- | src/simul/simul-vhdl_debug.adb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/simul/simul-vhdl_debug.adb b/src/simul/simul-vhdl_debug.adb index f2ce5cb67..71d3f9258 100644 --- a/src/simul/simul-vhdl_debug.adb +++ b/src/simul/simul-vhdl_debug.adb @@ -454,7 +454,7 @@ package body Simul.Vhdl_Debug is New_Line; if Boolean'(True) then - Put (" nbr sources (drv + conn):"); + Put (" nbr sources (drv + conn : total):"); New_Line; for I in 0 .. S.Typ.W - 1 loop Put (" "); @@ -463,6 +463,8 @@ package body Simul.Vhdl_Debug is Put_Uns32 (S.Nbr_Sources (I).Nbr_Drivers); Put (" + "); Put_Uns32 (S.Nbr_Sources (I).Nbr_Conns); + Put (" : "); + Put_Uns32 (S.Nbr_Sources (I).Total); New_Line; end loop; end if; |