>
> >If you really, really, really want one and can't find it, I might have one on
> >a mag tape somewhere, if I could just find a system that reads mag tape...
>
> Are you sure it?s not a Small C Compiler ? It?s lack of structs, unsigned
> and even doesn?t heard of void. And without this this, zcc is quite fine ...
>
No, the original v6 K&R compiler was hacked long ago to produce
z80 code. This compiler is top-down, recursive descent, with an operator
precedence expression parser...
Small - C isn't worth much at all, I generally draw the line with
enums and bit fields for C compilers. That means, the compiler has to implement
*all* K&R C except enums and bit fields, or it's not worth thinking about.
In addition, Small C's architecture is very, very poor, it actually
parses using strcmp() ;-(
Greg