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:08:54 -0500 Organization: JSA Research & Innovation Message-ID: References: <41bc7a62-9c70-466d-b316-5fc74a3ee845n@googlegroups.com> <8e45935f-7643-4998-a270-fc7157c89934n@googlegroups.com> Injection-Date: Wed, 31 Mar 2021 23:08:56 -0000 (UTC) Injection-Info: franka.jacob-sparre.dk; posting-host="rrsoftware.com:24.196.82.226"; logging-data="10219"; 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:61711 List-Id: "Dmitry A. Kazakov" wrote in message news:s3v3us$dfc$1@gioia.aioe.org... > On 2021-03-30 13:27, mockturtle wrote: > >> Well, old ZX Spectrum with its 48K RAM extension (I and my brother said >> when we extended the RAM: "What are we going to do with all this memory?" >> :-D ) used just 64K and you could do nice stuff. The first release of >> Turbo Pascal (editor and compiler integrated) was a .COM, limited by >> design to 64K. > > I remember the glorious time when 1K weighted 1kg (:-)) > > When I started, I and my pal worked together on a 256K machine in two time > sharing terminal sessions. That was RSX-11M. These days almost every > executable begins at 5-10M. You need to use a compiler (at least some of the time) that cares about size (i.e. Janus/Ada). Even Claw GUI programs usually don't exceed 0.5MB (and command line programs can be many times smaller). Smaller programs are often faster as well -- paging pressure is a real thing. Randy.