aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-builders.adb
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2020-03-22 19:36:44 +0100
committerTristan Gingold <tgingold@free.fr>2020-03-22 19:36:44 +0100
commit0cd37c83c170b5292b5ec9800013da6b4f63c1c1 (patch)
tree3b8a1df5451df80e2da3d630eb8621dedbcd1d18 /src/synth/netlists-builders.adb
parent902d81ad69bb66a9515d09270c10d0f7ea167d25 (diff)
downloadghdl-0cd37c83c170b5292b5ec9800013da6b4f63c1c1.tar.gz
ghdl-0cd37c83c170b5292b5ec9800013da6b4f63c1c1.tar.bz2
ghdl-0cd37c83c170b5292b5ec9800013da6b4f63c1c1.zip
synth-disp_vhdl: do not wrap inout ports. For #1166
Diffstat (limited to 'src/synth/netlists-builders.adb')
-rw-r--r--src/synth/netlists-builders.adb2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/synth/netlists-builders.adb b/src/synth/netlists-builders.adb
index 78954af95..9280d619c 100644
--- a/src/synth/netlists-builders.adb
+++ b/src/synth/netlists-builders.adb
@@ -26,12 +26,14 @@ package body Netlists.Builders is
function Create_Input (Id : String; W : Width := 0) return Port_Desc is
begin
return (Name => New_Sname_Artificial (Get_Identifier (Id), No_Sname),
+ Is_Inout => False,
W => W);
end Create_Input;
function Create_Output (Id : String; W : Width := 0) return Port_Desc is
begin
return (Name => New_Sname_Artificial (Get_Identifier (Id), No_Sname),
+ Is_Inout => False,
W => W);
end Create_Output;