This directory contains a machine description for the C compiler ``LCC''
(available by FTP from sunsite.doc.ic.ac.uk in the directory
/computing/programming/languages/c/lcc) to make it output in a format
acceptable by NASM.

Simply copy the file ``x86nasm.md'' into the /src directory from LCC,
and make the following changes to ``bind.c'' in the /src directory:

near the top of the file, add a line that reads

extern	x86nasmIR;

and before the line that reads ``"null", &nullIR,'' add the following line:

        "x86-nasm",      &x86nasmIR,

Then compile and install lcc as specified in the instructions provided with
the package, creating a machine description for the driver that specifies
a target of "x86-nasm" and uses NASM as its assembler. It would probably
be best to remove the command that deletes the assembler file, as the
output generated by the compiler is not yet really usable with NASM, as
it uses multiple segments, and NASM's output format cannot cope with this.
