9fans - fans of the OS Plan 9 from Bell Labs
 help / color / mirror / Atom feed
* Re: [9fans] A Plan 9 C request....
@ 2006-03-02 12:07 Fco. J. Ballesteros
  2006-03-02 12:14 ` Richard Miller
  0 siblings, 1 reply; 8+ messages in thread
From: Fco. J. Ballesteros @ 2006-03-02 12:07 UTC (permalink / raw)
  To: 9fans

:  After Ken's compiler, lcc is my favorite C compiler.  Ah, for the days
:  when C and I were young, and all the compilers were Steve' pcc.  I
:  never got a chance to use Dennis' compiler in the heat of battle, but
:  it's code is a wonder to behold.  It's evolution from NB to C is the
:  best example I've seen of entropy in reverse.

Could we see the code?



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] A Plan 9 C request....
  2006-03-02 12:07 [9fans] A Plan 9 C request Fco. J. Ballesteros
@ 2006-03-02 12:14 ` Richard Miller
  2006-03-02 12:25   ` Anthony Sorace
  2006-03-02 12:26   ` Brantley Coile
  0 siblings, 2 replies; 8+ messages in thread
From: Richard Miller @ 2006-03-02 12:14 UTC (permalink / raw)
  To: 9fans

> :  never got a chance to use Dennis' compiler in the heat of battle, but
> :  it's code is a wonder to behold.  It's evolution from NB to C is the
> :  best example I've seen of entropy in reverse.
>
> Could we see the code?

http://www.tuhs.org/Archive/PDP-11/Distributions/research/Dennis_v6/v6src.tar.gz

Look in directory 'c'.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] A Plan 9 C request....
  2006-03-02 12:14 ` Richard Miller
@ 2006-03-02 12:25   ` Anthony Sorace
  2006-03-02 12:26   ` Brantley Coile
  1 sibling, 0 replies; 8+ messages in thread
From: Anthony Sorace @ 2006-03-02 12:25 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

also interesting, in terms of evolution:

http://www.cs.bell-labs.com/who/dmr/primevalC.html

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] A Plan 9 C request....
  2006-03-02 12:14 ` Richard Miller
  2006-03-02 12:25   ` Anthony Sorace
@ 2006-03-02 12:26   ` Brantley Coile
  2006-03-03 15:07     ` erik quanstrom
  1 sibling, 1 reply; 8+ messages in thread
From: Brantley Coile @ 2006-03-02 12:26 UTC (permalink / raw)
  To: 9fans

[-- Attachment #1: Type: text/plain, Size: 105 bytes --]

http://plan9.bell-labs.com/cm/cs/who/dmr/primevalC.html

See the above for the evolution of the code.

[-- Attachment #2: Type: message/rfc822, Size: 2440 bytes --]

From: Richard Miller <9fans@hamnavoe.com>
To: 9fans@cse.psu.edu
Subject: Re: [9fans] A Plan 9 C request....
Date: Thu, 2 Mar 2006 12:14:31 +0000
Message-ID: <aa5409a26b13f8535c296cfdb9dedc2f@hamnavoe.com>

> :  never got a chance to use Dennis' compiler in the heat of battle, but
> :  it's code is a wonder to behold.  It's evolution from NB to C is the
> :  best example I've seen of entropy in reverse.
>
> Could we see the code?

http://www.tuhs.org/Archive/PDP-11/Distributions/research/Dennis_v6/v6src.tar.gz

Look in directory 'c'.

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] A Plan 9 C request....
  2006-03-02 12:26   ` Brantley Coile
@ 2006-03-03 15:07     ` erik quanstrom
  2006-03-04 10:00       ` Richard Miller
  2006-03-27 11:13       ` [9fans] " Nikita Danilov
  0 siblings, 2 replies; 8+ messages in thread
From: erik quanstrom @ 2006-03-03 15:07 UTC (permalink / raw)
  To: 9fans, Brantley Coile

in the section after the /* storage */ comment in c00.c

	regtab 0;
	efftab 1;
[etc.]

should this be read as

	int regtab = 0;
	int efftab = 1;

?

- erik

Brantley Coile <brantley@coraid.com> writes

|
| --upas-sxzcqiogirovolmsuexgarfigy
|
| http://plan9.bell-labs.com/cm/cs/who/dmr/primevalC.html
|
| See the above for the evolution of the code.
|
| --upas-sxzcqiogirovolmsuexgarfigy
| To: Fans of the OS Plan 9 from Bell Labs <9fans@cse.psu.edu>,
| 	9fans@cse.psu.edu,
| 	Richard Miller <9fans@hamnavoe.com>
| References: <aa5409a26b13f8535c296cfdb9dedc2f@hamnavoe.com>
| In-Reply-To: <aa5409a26b13f8535c296cfdb9dedc2f@hamnavoe.com>
| Subject: Re: [9fans] A Plan 9 C request....
|
| > :  never got a chance to use Dennis' compiler in the heat of battle, but
| > :  it's code is a wonder to behold.  It's evolution from NB to C is the
| > :  best example I've seen of entropy in reverse.
| >
| > Could we see the code?
|
| http://www.tuhs.org/Archive/PDP-11/Distributions/research/Dennis_v6/v6src.tar.gz
|
| Look in directory 'c'.


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] A Plan 9 C request....
  2006-03-03 15:07     ` erik quanstrom
@ 2006-03-04 10:00       ` Richard Miller
  2006-03-27 11:13       ` [9fans] " Nikita Danilov
  1 sibling, 0 replies; 8+ messages in thread
From: Richard Miller @ 2006-03-04 10:00 UTC (permalink / raw)
  To: 9fans

> in the section after the /* storage */ comment in c00.c
>
> 	regtab 0;
> 	efftab 1;
> [etc.]
>
> should this be read as
>
> 	int regtab = 0;
> 	int efftab = 1;

Yes.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* [9fans] Re: A Plan 9 C request....
  2006-03-03 15:07     ` erik quanstrom
  2006-03-04 10:00       ` Richard Miller
@ 2006-03-27 11:13       ` Nikita Danilov
  2006-03-27 14:33         ` LiteStar numnums
  1 sibling, 1 reply; 8+ messages in thread
From: Nikita Danilov @ 2006-03-27 11:13 UTC (permalink / raw)
  To: 9fans

erik quanstrom <quanstro@quanstro.net> writes:

> in the section after the /* storage */ comment in c00.c
>
> 	regtab 0;
> 	efftab 1;
> [etc.]
>
> should this be read as
>
> 	int regtab = 0;
> 	int efftab = 1;
>
> ?

Submit a patch.

>
> - erik

Nikita.



^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [9fans] Re: A Plan 9 C request....
  2006-03-27 11:13       ` [9fans] " Nikita Danilov
@ 2006-03-27 14:33         ` LiteStar numnums
  0 siblings, 0 replies; 8+ messages in thread
From: LiteStar numnums @ 2006-03-27 14:33 UTC (permalink / raw)
  To: Fans of the OS Plan 9 from Bell Labs

[-- Attachment #1: Type: text/plain, Size: 1092 bytes --]

For Primeval C?

On 3/27/06, Nikita Danilov <nikita@clusterfs.com> wrote:
>
> erik quanstrom <quanstro@quanstro.net> writes:
>
> > in the section after the /* storage */ comment in c00.c
> >
> >       regtab 0;
> >       efftab 1;
> > [etc.]
> >
> > should this be read as
> >
> >       int regtab = 0;
> >       int efftab = 1;
> >
> > ?
>
> Submit a patch.
>
> >
> > - erik
>
> Nikita.
>
>


--
Nietzsche's first step is to accept what he knows. Atheism for him goes
without saying and is "contructive and
radical". Nietzsche's supreme vocation, so he says, is to provoke a kind of
crisis and a final decision about the
problem of atheism. The world continues on its course at random and there is
nothing final about it. Thus God
is useless, since He wants nothing in particular. If he wanted something --
and here we recognize the traditional
forumlation of the problem of evil -- He would have to assume responsiblity
for "a sum total of pain and inconsistency
which would debase the entire value of being born."
-- Albert Camus, L'Homme révolté

[-- Attachment #2: Type: text/html, Size: 1632 bytes --]

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2006-03-27 14:33 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-03-02 12:07 [9fans] A Plan 9 C request Fco. J. Ballesteros
2006-03-02 12:14 ` Richard Miller
2006-03-02 12:25   ` Anthony Sorace
2006-03-02 12:26   ` Brantley Coile
2006-03-03 15:07     ` erik quanstrom
2006-03-04 10:00       ` Richard Miller
2006-03-27 11:13       ` [9fans] " Nikita Danilov
2006-03-27 14:33         ` LiteStar numnums

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).