diff options
author | Tristan Gingold <tgingold@free.fr> | 2019-08-31 08:01:20 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2019-08-31 08:01:20 +0200 |
commit | 59802f84a6be56ee145efd1422fd802c8729fc88 (patch) | |
tree | 4e32791e98f74604e5b32fa82f64f463e4969734 /src/synth/netlists-gates.ads | |
parent | befcd7309285746fdb6c6af2424daf9329f682c1 (diff) | |
download | ghdl-59802f84a6be56ee145efd1422fd802c8729fc88.tar.gz ghdl-59802f84a6be56ee145efd1422fd802c8729fc88.tar.bz2 ghdl-59802f84a6be56ee145efd1422fd802c8729fc88.zip |
synth: remove insert gate.
Diffstat (limited to 'src/synth/netlists-gates.ads')
-rw-r--r-- | src/synth/netlists-gates.ads | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/synth/netlists-gates.ads b/src/synth/netlists-gates.ads index da72811e0..57f2fd500 100644 --- a/src/synth/netlists-gates.ads +++ b/src/synth/netlists-gates.ads @@ -120,13 +120,6 @@ package Netlists.Gates is -- OUT := IN0[IN1*STEP+OFF+WD-1:IN1*STEP+OFF] Id_Dyn_Extract : constant Module_Id := 51; - -- This gate has two inputs I, V and one parameter POS. - -- It replaces bits POS + width(V) - 1 .. POS of I by V, ie: - -- T := I; - -- T [POS+width(V)-1:POS] := V - -- OUT := T. - Id_Insert : constant Module_Id := 52; - -- Like Insert but for dynamic values. -- T := IN0 -- T [IN2*STEP+OFF+WD-1:IN2*STEP+OFF] := IN1 |