Skip to content

Commit

Permalink
Show debugging status
Browse files Browse the repository at this point in the history
  • Loading branch information
MockbaTheBorg committed Jul 6, 2024
1 parent cc28986 commit 42e9dbb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion RunCPM/globals.h
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,12 @@
//
#define STR_HELPER(x) #x
#define STR(x) STR_HELPER(x)
#define CCPHEAD "\r\nRunCPM Version " VERSION " (CP/M " STR(TPASIZE) "K)\r\n"
#ifdef DEBUG
#define DBG " - DEBUG"
#else
#define DBG
#endif
#define CCPHEAD "\r\nRunCPM Version " VERSION " (CP/M " STR(TPASIZE) "K)" DBG "\r\n"

#define NOSLASH // Will translate '/' to '_' on filenames to prevent directory errors

Expand Down

0 comments on commit 42e9dbb

Please sign in to comment.