/* verbose.c – Implement a logging function for debugging */
#include
#include
#include
#include
#include “armemu.h”
bool g_verbose = false;
void verbose(char *fmt, …) {
if (g_verbose) {
va_list args;
va_start(args, fmt);
vprintf(fmt, args);
va_end(args);
}
}