Added flag in base.h, VERBOSE

Will be used to provide traces during program execution or assembly.
This commit is contained in:
2023-10-22 18:02:40 +01:00
parent a8d743e76e
commit 5ee9bfaca8

View File

@@ -18,6 +18,11 @@
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define MIN(a, b) ((a) > (b) ? (b) : (a))
// Flags
#ifndef VERBOSE
#define VERBOSE 0
#endif
typedef uint64_t u64;
typedef uint32_t u32;
typedef int32_t i32;