aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/synth-environment.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-08 19:29:40 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-11 20:25:05 +0100
commit207b7fb44c667af87c5f8e4ab20652fcaaf1849e (patch)
tree6540bf1f8c7448f174770fc664061980f6c18cba /src/synth/synth-environment.ads
parent539dfe3acefd1c4042779c8bb47e1b851ebaa3c6 (diff)
downloadghdl-207b7fb44c667af87c5f8e4ab20652fcaaf1849e.tar.gz
ghdl-207b7fb44c667af87c5f8e4ab20652fcaaf1849e.tar.bz2
ghdl-207b7fb44c667af87c5f8e4ab20652fcaaf1849e.zip
synth: move net_table to netlists-utils.
Diffstat (limited to 'src/synth/synth-environment.ads')
-rw-r--r--src/synth/synth-environment.ads9
1 files changed, 2 insertions, 7 deletions
diff --git a/src/synth/synth-environment.ads b/src/synth/synth-environment.ads
index 4b242ab28..1f4b24711 100644
--- a/src/synth/synth-environment.ads
+++ b/src/synth/synth-environment.ads
@@ -19,10 +19,11 @@
-- MA 02110-1301, USA.
with Types; use Types;
-with Dyn_Tables;
with Tables;
+
with Netlists; use Netlists;
with Netlists.Builders;
+
with Synth.Source;
package Synth.Environment is
@@ -311,10 +312,4 @@ private
Table_Index_Type => Conc_Assign,
Table_Low_Bound => No_Conc_Assign,
Table_Initial => 1024);
-
- package Net_Tables is new Dyn_Tables
- (Table_Component_Type => Net,
- Table_Index_Type => Int32,
- Table_Low_Bound => 1,
- Table_Initial => 32);
end Synth.Environment;