From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.5-pre1 (2020-06-20) on ip-172-31-74-118.ec2.internal X-Spam-Level: X-Spam-Status: No, score=-1.8 required=3.0 tests=BAYES_00,PLING_QUERY autolearn=no autolearn_force=no version=3.4.5-pre1 Path: eternal-september.org!reader02.eternal-september.org!gandalf.srv.welterde.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: Adapting an Ada compiler to generate 8051 code (Again?! ;-) Date: Wed, 31 Mar 2021 18:20:51 -0500 Organization: JSA Research & Innovation Message-ID: References: <41bc7a62-9c70-466d-b316-5fc74a3ee845n@googlegroups.com> <87im58a1up.fsf@nightsong.com> <87a6qk9uua.fsf@nightsong.com> Injection-Date: Wed, 31 Mar 2021 23:20:53 -0000 (UTC) Injection-Info: franka.jacob-sparre.dk; posting-host="rrsoftware.com:24.196.82.226"; logging-data="11151"; 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:61713 List-Id: "Luke A. Guest" wrote in message news:s40urd$qbp$1@gioia.aioe.org... ... > AVR isn't really an accumulator arch, it's got 32 registers. Even the 6502 > has a port, but that uses the zero page as virtual registers. The Z80 > cannot do that as it starts executing from address 0 iirc. The Z-80 has enough registers for Ada (or at least a reasonable subtest) -- see the original Janus/Ada compilers. If you want *real* registers, even the x86 doesn't have enough registers for reasonable code optimizations. A "register architecture" is an iffy model for an intermediate language if you ask me. Randy.