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,76813f0de9a78c61 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-10-03 01:53:06 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: "Petter Fryklund" Newsgroups: comp.lang.ada Subject: Re: How can you convert..... Date: Wed, 3 Oct 2001 10:54:20 +0200 Organization: ericsson Message-ID: <9peieq$5kd$1@newstoo.ericsson.se> References: <9pedqp$m5l$1@newstoo.ericsson.se> NNTP-Posting-Host: 172.17.76.206 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:13669 Date: 2001-10-03T10:54:20+02:00 List-Id: If it is convertiable, by with Ada.Unchecked_Conversion; with System; with Interfaces; ... ... function "+" is new Ada.Unchecked_Conversion (Source => System.Adress, Target => Interfaces.Unsigned_32); Adr : System.Address; U : Interfaces.Unsigned_32; begin .... ..... U := + Adr; Zebylon wrote in message <9pedqp$m5l$1@newstoo.ericsson.se>... >...an System.Adress type to an Unsigned_32? > > >/S > >