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=unavailable autolearn_force=no version=3.4.4 Path: eternal-september.org!reader01.eternal-september.org!reader02.eternal-september.org!feeder.eternal-september.org!nntp-feed.chiark.greenend.org.uk!ewrotcd!newsfeed.xs3.de!io.xs3.de!news.jacob-sparre.dk!franka.jacob-sparre.dk!pnx.dk!.POSTED.rrsoftware.com!not-for-mail From: "Randy Brukardt" Newsgroups: comp.lang.ada Subject: Re: Examining individual bytes of an integer Date: Wed, 17 Oct 2018 17:01:06 -0500 Organization: JSA Research & Innovation Message-ID: References: <9d90fa3e-f800-4086-bf97-a65474a8140a@googlegroups.com> <4ddbc9bf-0e2e-466d-8238-d8f709b985e1@googlegroups.com> <35f53cd9-4979-49b8-a5df-2c1cf0764507@googlegroups.com> Injection-Date: Wed, 17 Oct 2018 22:01:07 -0000 (UTC) Injection-Info: franka.jacob-sparre.dk; posting-host="rrsoftware.com:24.196.82.226"; logging-data="23367"; mail-complaints-to="news@jacob-sparre.dk" X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2900.5931 X-RFC2646: Format=Flowed; Response X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2900.7246 Xref: reader02.eternal-september.org comp.lang.ada:54620 Date: 2018-10-17T17:01:06-05:00 List-Id: "Niklas Holsti" wrote in message news:g2o4gbF44ejU1@mid.individual.net... > On 18-10-17 01:33 , Randy Brukardt wrote: > >> ... Given that pretty much no one should be using 'Address anyway, > > Anyone doing HW interfacing with DMA I/O has to use 'Address, because > that's what is programmed into the DMA channel. And that is quite common > in embedded Ada programs that do not use an operating system for I/O. > > I guess current users of Janus/Ada on MS Windows don't make such programs. The *reason* to use 'Address and address clauses is to interface with hardware. That's fine, but there aren't that many people writing such interfaces. "No one" is a bit much, perhaps, but it should be way below 5%. (If it isn't, that says Ada is way under-utilized.) In any case, indexing always gets the right answer with the possible exception of packed arrays. So there's not a lot of need or value to following that Implementation Advice. Randy.