]> git.sur5r.net Git - cc65/blobdiff - src/ca65/studyexpr.c
Add -d (debug mode) to the assembler options. In studyexpr, use the debug
[cc65] / src / ca65 / studyexpr.c
index e5141702f548187e35d9dad71b1ee0c8d0f9d945..cef121223e9f84cb203aacdf22d11eb84e43d371 100644 (file)
@@ -37,7 +37,7 @@
 
 /* common */
 #include "check.h"
-#include "print.h"
+#include "debugflag.h"
 #include "shift.h"
 #include "xmalloc.h"
 
@@ -537,7 +537,7 @@ static void StudySymbol (ExprNode* Expr, ExprDesc* D)
             SymUnmarkUser (Sym);
 
             /* If requested and if the expression is valid, dump it */
-            if (Verbosity > 0 && !ED_HasError (D)) {
+            if (Debug > 0 && !ED_HasError (D)) {
                 DumpExpr (Expr, SymResolve);
             }