        The compiler is invoked by typing:

        pc <filename>.cpp [-l]

        Where <filename> is the name of the file to be compiled.
        The -l option will cause the compiler to produce the listing
        on the standard output. This may be redirected to a file.
        After compiling the image is executed if there is no errors.

        pc test.cpp -l >test.lst

        Output files include:

        <filename>.omp  The object map file showing the objects created.
        <filename>.img  The image file containing the objects.
        The image file is not produced in the shareware version.

        pc <filename>.img will cause the compiler to execute a precompiled
        image file.

