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=-0.3 required=5.0 tests=BAYES_00, REPLYTO_WITHOUT_TO_CC autolearn=no autolearn_force=no version=3.4.4 X-Google-Thread: 103376,5c35b354395e0f78 X-Google-Attributes: gid103376,public X-Google-Language: ENGLISH,ASCII-7-bit Path: g2news1.google.com!news1.google.com!proxad.net!newsfeed.stueberl.de!feed.news.tiscali.de!news.belwue.de!newsfeed.arcor.de!news.arcor.de!not-for-mail From: "Dmitry A. Kazakov" Subject: Re: Easy Question - Printing Out An Address Newsgroups: comp.lang.ada User-Agent: 40tude_Dialog/2.0.14.1 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Reply-To: mailbox@dmitry-kazakov.de Organization: cbb software GmbH References: <1110391414.401563.271160@o13g2000cwo.googlegroups.com> Date: Wed, 9 Mar 2005 19:34:22 +0100 Message-ID: NNTP-Posting-Date: 09 Mar 2005 19:34:18 MET NNTP-Posting-Host: a34306cd.newsread4.arcor-online.net X-Trace: DXC=_c6cGbC0YGY8f4>W>BJ_OP:ejgIfPPldTjW\KbG]kaMXGSi?jHD8GOP5g[:TIVW\UR[6LHn;2LCV^VVa[ZlQni_QA[W9Hj4kWEW X-Complaints-To: abuse@arcor.de Xref: g2news1.google.com comp.lang.ada:8966 Date: 2005-03-09T19:34:18+01:00 List-Id: On 9 Mar 2005 10:03:34 -0800, Bryan.Berns@gmail.com wrote: > How can I print out (for debugging purposes) a Machine.Address to the > screen? > > - Console.Write(????) > > Any ideas? See System.Storage_Elements ARM 13.7.1 It defines To_Integer that converts address to an integer type Integer_Address (that can be either modular or signed depending on the compiler). Anyway, you can then do Integer_Address'Image (X'Address). -- Regards, Dmitry A. Kazakov http://www.dmitry-kazakov.de