diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-07-26 22:02:07 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-07-26 22:02:07 +0200 |
commit | a123be70f01c43cdafd698d61eca1913db478d24 (patch) | |
tree | 5aa7abd1bf78b6852593e04200cec96c146d7f62 | |
parent | f73e18b3af7b518d971a1182b3e73b68b458416c (diff) | |
download | ghdl-a123be70f01c43cdafd698d61eca1913db478d24.tar.gz ghdl-a123be70f01c43cdafd698d61eca1913db478d24.tar.bz2 ghdl-a123be70f01c43cdafd698d61eca1913db478d24.zip |
netlist-disp_vhdl: add a separator between instances and signals.
Fix #2140
-rw-r--r-- | src/synth/netlists-disp_vhdl.adb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/synth/netlists-disp_vhdl.adb b/src/synth/netlists-disp_vhdl.adb index 82f8abfc7..2898d8b43 100644 --- a/src/synth/netlists-disp_vhdl.adb +++ b/src/synth/netlists-disp_vhdl.adb @@ -139,7 +139,7 @@ package body Netlists.Disp_Vhdl is null; when others => Port_Name := Get_Output_Desc (M, Idx).Name; - Put ("_"); + Put ("_c_"); Put_Interface_Name (Port_Name); end case; end if; |