]> git.sur5r.net Git - cc65/blobdiff - src/cc65/compile.h
Fixed the cc65 code that handled an addition of a pointer to a 32-bit offset.
[cc65] / src / cc65 / compile.h
index d0f6f3816ea762f0175fa7465ae1eabc7c522022..2d15c8200afa8022d57796bdeb6b2399f7e233c0 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                compile.h                                 */
+/*                                 compile.h                                 */
 /*                                                                           */
-/*                      Top level compiler subroutine                       */
+/*                       Top level compiler subroutine                       */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 2000     Ullrich von Bassewitz                                        */
-/*              Wacholderweg 14                                              */
-/*              D-70597 Stuttgart                                            */
-/* EMail:       uz@musoftware.de                                             */
+/* (C) 2000-2009, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 /*****************************************************************************/
-/*                                  Code                                    */
+/*                                   Code                                    */
 /*****************************************************************************/
 
 
 
-void Compile (void);
+void Compile (const char* FileName);
 /* Top level compile routine. Will setup things and call the parser. */
 
+void FinishCompile (void);
+/* Emit literals, externals, do cleanup and optimizations */
+
 
 
 /* End of compile.h */
 
 #endif
-
-
-