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,29f36805b9a20fe8 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2001-04-02 10:41:43 PST Path: supernews.google.com!sn-xit-02!supernews.com!news.tele.dk!195.158.233.21!news1.ebone.net!news.ebone.net!newsfeed.freenet.de!news.rwth-aachen.de!news.rhrz.uni-bonn.de!news.uni-stuttgart.de!cert.uni-stuttgart.de!not-for-mail From: Florian Weimer Newsgroups: comp.lang.ada Subject: Re: Streams in Ada Date: 02 Apr 2001 19:41:27 +0200 Organization: RUS-CERT, University of Stuttgart, Germany Sender: rusfw@mercury.rus.uni-stuttgart.de Message-ID: References: <9aa3dd$efb$1@nh.pace.co.uk> NNTP-Posting-Host: mercury.rus.uni-stuttgart.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Trace: hornet.rus.uni-stuttgart.de 986233111 11324 129.69.1.226 (2 Apr 2001 17:38:31 GMT) X-Complaints-To: abuse@cert.uni-stuttgart.de NNTP-Posting-Date: Mon, 2 Apr 2001 17:38:31 +0000 (UTC) User-Agent: Gnus/5.0808 (Gnus v5.8.8) Emacs/20.7 Xref: supernews.google.com comp.lang.ada:6363 Date: 2001-04-02T19:41:27+02:00 List-Id: Ted Dennison writes: > I think you meant, "all possible Ada implementations", which I would > disagree with. Do impossible Ada implementations exist? ;-) > On the other hand, if we were to interpret this to say "on all > likely implementations", I could agree with you. I'll leave it up to > others how likely a conforming Ada95 PDP-10 implementation is. I think if you're after practical portability, the PDP-10 doesn't matter to you. > Out of curiosity, what exactly constituted a "byte" on a PDP-10? According to http://www.inwap.com/pdp10/hbaker/pdp-10/Byte.html, the smallest individually addressable storage unit is a bit, so with a common definition of a byte, it consists of a single bit. ;-) If I were writing an Ada compiler for the PDP-10, I would probably choose Storage_Element'Size = 9. IIRC, the GCC porters are doing a similar thing (CHAR_BITS == 8).