aboutsummaryrefslogtreecommitdiffstats
path: root/src/synth/netlists-concats.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/netlists-concats.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/netlists-concats.ads')
-rw-r--r--src/synth/netlists-concats.ads8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/synth/netlists-concats.ads b/src/synth/netlists-concats.ads
index 7f3e81898..f3994de4e 100644
--- a/src/synth/netlists-concats.ads
+++ b/src/synth/netlists-concats.ads
@@ -18,7 +18,7 @@
-- Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
-- MA 02110-1301, USA.
-with Dyn_Tables;
+with Netlists.Utils;
with Netlists.Builders; use Netlists.Builders;
package Netlists.Concats is
@@ -32,11 +32,7 @@ package Netlists.Concats is
private
Static_Last : constant Int32 := 16;
- package Net_Tables is new Dyn_Tables
- (Table_Component_Type => Net,
- Table_Index_Type => Int32,
- Table_Low_Bound => 1,
- Table_Initial => Integer (Static_Last * 2));
+ package Net_Tables renames Netlists.Utils.Net_Tables;
type Concat_Type is limited record
Len : Int32 := 0;