diff options
Diffstat (limited to 'src/synth/netlists-gates.ads')
-rw-r--r-- | src/synth/netlists-gates.ads | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/synth/netlists-gates.ads b/src/synth/netlists-gates.ads index 9a077f2f7..649503796 100644 --- a/src/synth/netlists-gates.ads +++ b/src/synth/netlists-gates.ads @@ -147,16 +147,20 @@ package Netlists.Gates is -- parameter, possibly signed or unsigned extended. For large width -- (> 128), the value is stored in a table. Id_Const_UB32 : constant Module_Id := 64; + Id_Const_UL32 : constant Module_Id := 70; Id_Const_SB32 : constant Module_Id := 65; Id_Const_UB64 : constant Module_Id := 66; Id_Const_SB64 : constant Module_Id := 67; Id_Const_UB128 : constant Module_Id := 68; Id_Const_SB128 : constant Module_Id := 69; - Id_Const_UL32 : constant Module_Id := 70; Id_Const_SL32 : constant Module_Id := 71; Id_Const_Z : constant Module_Id := 72; Id_Const_0 : constant Module_Id := 73; + -- Large width. + Id_Const_Bit : constant Module_Id := 74; + Id_Const_Log : constant Module_Id := 75; + -- Concatenation with N inputs. Id_Concatn : constant Module_Id := 80; end Netlists.Gates; |