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.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,18a1da27baade824,start X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-15 03:41:31 PST Path: archiver1.google.com!news1.google.com!sn-xit-02!supernews.com!news.tele.dk!small.news.tele.dk!194.213.69.151!news.algonet.se!newsfeed1.telenordia.se!algonet!uab.ericsson.se!erix.ericsson.se!newstoo.ericsson.se!not-for-mail From: "Zebylon" Newsgroups: comp.lang.ada Subject: A copy question.... Date: Mon, 15 Oct 2001 12:40:10 +0200 Organization: ericsson Message-ID: <9qedad$i1p$1@newstoo.ericsson.se> NNTP-Posting-Host: 172.17.81.239 X-Newsreader: Microsoft Outlook Express 4.72.2106.4 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Xref: archiver1.google.com comp.lang.ada:14511 Date: 2001-10-15T12:40:10+02:00 List-Id: If you have an system.address variable, an data length variable and an array of Unsigned_32. How can you move the data ranging between the address and the address+data_length into the array? I.G. Address : System.address := 0x0200_0000; Data_Length : Natural := 200; --bytes Array : array range (integer 0..375) of Unsigned_32; Is there some smart way of placing the data in the array...?