Use verbosePrint in rgbasm as well as rgblink

This commit is contained in:
Rangi42
2025-07-12 01:38:19 -04:00
parent 82513e5255
commit d32b1912ed
6 changed files with 24 additions and 42 deletions

View File

@@ -8,6 +8,13 @@
extern bool verbose;
#define verbosePrint(...) \
do { \
if (verbose) { \
fprintf(stderr, __VA_ARGS__); \
} \
} while (0)
extern FILE *dependFile;
extern std::string targetFileName;
extern bool continueAfterMissingIncludes;