diff options
author | Tristan Gingold <tgingold@free.fr> | 2015-09-10 20:59:08 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2015-09-10 20:59:08 +0200 |
commit | 42f4c411641c04da2b8f08f9029e17bfd37206e4 (patch) | |
tree | 97db2955734ee7e059f461cef8a2924eeb49271d /src/vhdl/configuration.ads | |
parent | 95632804220716d4993d3e4b0d0cba06d984a837 (diff) | |
download | ghdl-42f4c411641c04da2b8f08f9029e17bfd37206e4.tar.gz ghdl-42f4c411641c04da2b8f08f9029e17bfd37206e4.tar.bz2 ghdl-42f4c411641c04da2b8f08f9029e17bfd37206e4.zip |
Reimplement table package (used instead of GNAT.Table).
Diffstat (limited to 'src/vhdl/configuration.ads')
-rw-r--r-- | src/vhdl/configuration.ads | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/vhdl/configuration.ads b/src/vhdl/configuration.ads index e02a2cdfb..8545c224c 100644 --- a/src/vhdl/configuration.ads +++ b/src/vhdl/configuration.ads @@ -17,15 +17,14 @@ -- 02111-1307, USA. with Types; use Types; with Iirs; use Iirs; -with GNAT.Table; +with Tables; package Configuration is - package Design_Units is new GNAT.Table + package Design_Units is new Tables (Table_Component_Type => Iir_Design_Unit, Table_Index_Type => Natural, Table_Low_Bound => 1, - Table_Initial => 16, - Table_Increment => 100); + Table_Initial => 16); -- Get the top configuration to build a design hierarchy whose top is -- PRIMARY + SECONDARY. |