shithub: mc

Download patch

ref: 8fc0919576234ccc15a9f66e43a326fd15f9ca79
parent: b1adfa01fcd7fd6a64067c2261be73941ed5d97f
author: Ori Bernstein <ori@eigenstate.org>
date: Sat Aug 18 23:04:44 EDT 2012

More stubbing in of information.

--- a/doc/mc.1
+++ b/doc/mc.1
@@ -55,10 +55,30 @@
 Generate assembly instead of an object file.
 
 .SH EXAMPLE
+.EX
+    6m foo.myr
+    6m bar.myr
+    ld -o foobar foo.o bar.o
+.EE
 
 .SH FILES
+The source for this compiler is available from
+.B git://git.eigenstate.org/git/ori/mc2.git
 
 .SH SEE ALSO
+.IR muse(1)
+.IR ld(1)
+.IR as(1)
 
 .SH BUGS
-
+.PP
+The language is not yet complete, and the compilers often omit useful
+constructs in spite of their desirability.
+.PP
+There are virtually no optimizations done, and the generated source is
+often very poorly performing.
+.PP
+The current calling convention is stack, and not register, based, even
+on architectures where it should be register based.
+.PP
+The calling convention is not C compatible.
--