]> git.sur5r.net Git - cc65/blobdiff - src/ca65/global.c
Add a new feature "ubiquitous_idents" that allows the use of instructions as
[cc65] / src / ca65 / global.c
index f9d29bea95aa6692b7d652f1a7164d24538f9350..e0196226aa05553668ed14e6e1b5022d67ae4c0b 100644 (file)
@@ -75,6 +75,7 @@ unsigned char DollarInIdents     = 0;   /* Allow '$' in identifiers */
 unsigned char LeadingDotInIdents = 0;   /* Allow '.' to start an identifier */
 unsigned char PCAssignment       = 0;  /* Allow "* = $XXX" or "$ = $XXX" */
 unsigned char MissingCharTerm    = 0;   /* Allow lda #'a (no closing term) */
+unsigned char UbiquitousIdents   = 0;   /* Allow ubiquitous identifiers */
 
 /* Misc stuff */
 const char Copyright[]           = "(C) Copyright 1998-2004 Ullrich von Bassewitz";