From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.3 required=5.0 tests=BAYES_00,INVALID_MSGID autolearn=no autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,496b086bf4527d5f X-Google-Attributes: gid103376,public From: "Paul Van Bellinghen" Subject: Re: S records Date: 1998/04/04 Message-ID: <6g63fs$iqi$1@news.mhv.net>#1/1 X-Deja-AN: 341534800 References: <6fu8mf$b1b$1@gte1.gte.net> <3523CB42.36FF@gsfc.nasa.gov> X-Server-Date: 4 Apr 1998 19:59:56 GMT X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Organization: MHVNet Newsgroups: comp.lang.ada Date: 1998-04-04T19:59:56+00:00 List-Id: >Going out on a limb and assuming the table is defined by Ada source code >(this is an Ada group, after all), just provide an address clause for >the table: > >Huge_Table : Huge_Table_Type := ; >for Table'address use ; > I also think that this is the best way to accomplish the task mentioned. The only thing I would add is that I have had problems using a hard address for . If the compiler complains about the address value being the wrong type, you might try : for Table'address use System.Address'Ref (16#8000_0400#); (or whatever address the table must begin at)