diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-06-28 07:42:55 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-06-28 07:42:55 +0200 |
commit | 1048f7b66fc74c09e7fc2afc2df1bac6516c9912 (patch) | |
tree | 628dbb7bd0b6b1fdaa5d84efabf7316a15767f15 /src/synth/netlists-gates.ads | |
parent | 9652c2bdfe75e90784910a0dd7d0f03dd97e0067 (diff) | |
download | ghdl-1048f7b66fc74c09e7fc2afc2df1bac6516c9912.tar.gz ghdl-1048f7b66fc74c09e7fc2afc2df1bac6516c9912.tar.bz2 ghdl-1048f7b66fc74c09e7fc2afc2df1bac6516c9912.zip |
synth: disp_vhdl: handle mux2
Diffstat (limited to 'src/synth/netlists-gates.ads')
-rw-r--r-- | src/synth/netlists-gates.ads | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/synth/netlists-gates.ads b/src/synth/netlists-gates.ads index c4d96df47..90615dc7a 100644 --- a/src/synth/netlists-gates.ads +++ b/src/synth/netlists-gates.ads @@ -65,7 +65,11 @@ package Netlists.Gates is Id_Split2 : constant Module_Id := 25; Id_Split3 : constant Module_Id := 26; + -- Inputs: s, i0, i1 + -- Output: o Id_Mux2 : constant Module_Id := 27; + -- Inputs: s, i0, i1, s2, s3 + -- Output: o Id_Mux4 : constant Module_Id := 28; -- Like a wire: the output is equal to the input, but could be elimited |