aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/synth/netlists-dump.adb6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/synth/netlists-dump.adb b/src/synth/netlists-dump.adb
index 8e1550dc9..9592dd5ea 100644
--- a/src/synth/netlists-dump.adb
+++ b/src/synth/netlists-dump.adb
@@ -167,9 +167,11 @@ package body Netlists.Dump is
if Get_Nbr_Outputs (Inst) > 0 then
Put_Indent (Indent + 1);
Put ("outputs");
- for I of Outputs (Inst) loop
+ for O of Outputs (Inst) loop
Put (' ');
- Dump_Net_Name (I, True);
+ Dump_Net_Name (O, True);
+ Put (':');
+ Put_Trim (Width'Image (Get_Width (O)));
end loop;
New_Line;
end if;