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 10:00:04 PST Path: archiver1.google.com!news1.google.com!newsfeed.stanford.edu!news-spur1.maxwell.syr.edu!news.maxwell.syr.edu!netnews.com!newshub2.rdc1.sfba.home.com!news.home.com!news1.rdc1.sfba.home.com.POSTED!not-for-mail From: tmoran@acm.org Newsgroups: comp.lang.ada Subject: Re: A copy question.... References: <9qedad$i1p$1@newstoo.ericsson.se> X-Newsreader: Tom's custom newsreader Message-ID: Date: Mon, 15 Oct 2001 17:00:02 GMT NNTP-Posting-Host: 24.7.82.199 X-Complaints-To: abuse@home.net X-Trace: news1.rdc1.sfba.home.com 1003165202 24.7.82.199 (Mon, 15 Oct 2001 10:00:02 PDT) NNTP-Posting-Date: Mon, 15 Oct 2001 10:00:02 PDT Organization: Excite@Home - The Leader in Broadband http://home.com/faster Xref: archiver1.google.com comp.lang.ada:14549 Date: 2001-10-15T17:00:02+00:00 List-Id: with System, System.Storage_Elements, Interfaces; procedure Test is Address : System.Address := System.Storage_Elements.To_Address(16#0200_0000#); Data_Length: Natural := 200; --bytes type Dword_Arrays is array (Integer range <>) of Interfaces.Unsigned_32; Source : Dword_Arrays(0 .. 49); -- 50*32=200*8 for Source'Address use Address; Target : Dword_Arrays(0 .. 375); begin Target(Source'range) := Source; end Test;