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 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-15 06:30:23 PST Path: archiver1.google.com!postnews1.google.com!not-for-mail From: Mark.Doherty@uk.thalesgroup.com (Mark Doherty) Newsgroups: comp.lang.ada Subject: Re: A copy question.... Date: 15 Oct 2001 06:30:23 -0700 Organization: http://groups.google.com/ Message-ID: <2d87db3f.0110150530.268fcdb3@posting.google.com> References: <9qedad$i1p$1@newstoo.ericsson.se> NNTP-Posting-Host: 194.200.220.2 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8bit X-Trace: posting.google.com 1003152623 13018 127.0.0.1 (15 Oct 2001 13:30:23 GMT) X-Complaints-To: groups-abuse@google.com NNTP-Posting-Date: 15 Oct 2001 13:30:23 GMT Xref: archiver1.google.com comp.lang.ada:14526 Date: 2001-10-15T13:30:23+00: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? Take a look at: for ... use (at) clause (ada83/95 syntax dependant), pragma volatile and pragma import. in the lrm. p.s. be careful with the sizes as you are impling 375*4 bytes of array and 200 bytes of address space!