]> git.sur5r.net Git - cc65/blobdiff - src/ca65/pseudo.h
Finished implemenation of commands to delete macros. Added the new commands to
[cc65] / src / ca65 / pseudo.h
index 5f67b6e9a5bd420a0bbdac162a368859aa586551..ba26368255eecdeed78443ddef9fd9dd30a56e98 100644 (file)
@@ -1,15 +1,15 @@
 /*****************************************************************************/
 /*                                                                           */
-/*                                pseudo.h                                  */
+/*                                pseudo.h                                  */
 /*                                                                           */
-/*             Pseudo instructions for the ca65 macroassembler              */
+/*             Pseudo instructions for the ca65 macroassembler              */
 /*                                                                           */
 /*                                                                           */
 /*                                                                           */
-/* (C) 1998     Ullrich von Bassewitz                                        */
-/*              Wacholderweg 14                                              */
-/*              D-70597 Stuttgart                                            */
-/* EMail:       uz@musoftware.de                                             */
+/* (C) 1998-2011, Ullrich von Bassewitz                                      */
+/*                Roemerstrasse 52                                           */
+/*                D-70794 Filderstadt                                        */
+/* EMail:         uz@cc65.org                                                */
 /*                                                                           */
 /*                                                                           */
 /* This software is provided 'as-is', without any expressed or implied       */
 
 
 
-/*****************************************************************************/
-/*                                          Data                                    */
-/*****************************************************************************/
-
-
-
-/* Are we inside a .IF condition that has been evaluated to TRUE? */
-extern unsigned char IfCond;
-
-/* How many .IFs are currently open? */
-extern unsigned OpenIfs;
-
-
-
 /*****************************************************************************/
 /*                                          Code                                    */
 /*****************************************************************************/
 
 
 
-int TokIsPseudo (unsigned Tok);
-/* Return true if the given token is a pseudo instruction token */
-
 void HandlePseudo (void);
 /* Handle a pseudo instruction */
 
+void CheckPseudo (void);
+/* Check if the stacks are empty at end of assembly */
+
 
 
 /* End of pseudo.h */