aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-utils.ads
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2019-11-08 19:29:52 +0100
committerTristan Gingold <tgingold@free.fr>2019-11-11 20:25:11 +0100
commitf6ee4a75bfba5341a9116193810c5ccf771d1cf0 (patch)
tree18fab110c29f13c9982e9cd6856fc88c14112b9a /src/synth/netlists-utils.ads
parent207b7fb44c667af87c5f8e4ab20652fcaaf1849e (diff)
downloadghdl-f6ee4a75bfba5341a9116193810c5ccf771d1cf0.tar.gz
ghdl-f6ee4a75bfba5341a9116193810c5ccf771d1cf0.tar.bz2
ghdl-f6ee4a75bfba5341a9116193810c5ccf771d1cf0.zip
dyn_tables: move Table_Initial generic to argument of
Diffstat (limited to 'src/synth/netlists-utils.ads')
-rw-r--r--src/synth/netlists-utils.ads8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/synth/netlists-utils.ads b/src/synth/netlists-utils.ads
index 029bd496c..b8ccb3e93 100644
--- a/src/synth/netlists-utils.ads
+++ b/src/synth/netlists-utils.ads
@@ -71,6 +71,10 @@ package Netlists.Utils is
package Net_Tables is new Dyn_Tables
(Table_Component_Type => Net,
Table_Index_Type => Int32,
- Table_Low_Bound => 1,
- Table_Initial => 32);
+ Table_Low_Bound => 1);
+
+ package Instance_Tables is new Dyn_Tables
+ (Table_Component_Type => Instance,
+ Table_Index_Type => Int32,
+ Table_Low_Bound => 1);
end Netlists.Utils;