]> git.xonotic.org Git - xonotic/gmqcc.git/blobdiff - README
Cleaups and README
[xonotic/gmqcc.git] / README
diff --git a/README b/README
index d069def2cf042f11d2df6f8047859712a1a89095..4ecb4db06f5fd6bb23d7dd4925f5c81718f05222 100644 (file)
--- a/README
+++ b/README
@@ -1,7 +1,7 @@
-This is my work in progress C compiler.  There are very few _good_ qc
+This is my work in progress Quake C compiler. There are very few _good_ QC
 compilers out there on the internet that can be used in the opensource
 community.  There are a lot of mediocre compilers, but no one wants those.
-This is the solution for that, for once a proper quake c compiler that is
+This is the solution for that, for once a proper Quake C compiler that is
 capable of doing proper optimization.  The design so far of this compiler
 is basic, because it doesn't actually compile code yet.
 
@@ -25,6 +25,11 @@ parse.c
        This is the parser which goes over all tokens and generates a parse tree
        (not currently, but will) and check for syntax correctness.
        
+typedef.c
+       This is the typedef system, this is a seperate file because it's a lot more
+       complicated than it sounds.  This handles all typedefs, and even recrusive
+       typedefs.
+       
 README
        This is the file you're currently reading