diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-10-11 18:34:49 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-10-13 18:54:21 +0200 |
commit | 63778e49e31ea631237bb7d9c9dadb1f965cef83 (patch) | |
tree | 181a09735f655bd8849da9609e8bf5b07551158f | |
parent | 0b636ffee57d715eda0c6596321c18ddf916e380 (diff) | |
download | ghdl-63778e49e31ea631237bb7d9c9dadb1f965cef83.tar.gz ghdl-63778e49e31ea631237bb7d9c9dadb1f965cef83.tar.bz2 ghdl-63778e49e31ea631237bb7d9c9dadb1f965cef83.zip |
netlists-builders: adjust names of dyn_extract ports.
-rw-r--r-- | src/synth/netlists-builders.adb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/synth/netlists-builders.adb b/src/synth/netlists-builders.adb index d17547491..3b3184a42 100644 --- a/src/synth/netlists-builders.adb +++ b/src/synth/netlists-builders.adb @@ -218,8 +218,8 @@ package body Netlists.Builders is Id_Dyn_Extract, 2, 1, 1); Ctxt.M_Dyn_Extract := Res; Outputs := (0 => Create_Output ("o")); - Inputs := (0 => Create_Input ("i"), - 1 => Create_Input ("v")); + Inputs := (0 => Create_Input ("v"), + 1 => Create_Input ("i")); Set_Port_Desc (Res, Inputs, Outputs); Set_Param_Desc (Res, (0 => (New_Sname_Artificial (Get_Identifier ("offset")), |