diff options
Diffstat (limited to 'src/devices/machine/bq4847.cpp')
| -rw-r--r-- | src/devices/machine/bq4847.cpp | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/machine/bq4847.cpp b/src/devices/machine/bq4847.cpp index 91fca4b8edd..6b24519d5d7 100644 --- a/src/devices/machine/bq4847.cpp +++ b/src/devices/machine/bq4847.cpp @@ -21,13 +21,13 @@ #include "emu.h" #include "bq4847.h" -#define LOG_WARN (1U<<1) // Warnings -#define LOG_CLOCK (1U<<2) // Clock operation -#define LOG_REG (1U<<3) // Register write -#define LOG_WATCHDOG (1U<<4) // Watchdog -#define LOG_TRANSFER (1U<<5) // Transfer +#define LOG_WARN (1U << 1) // Warnings +#define LOG_CLOCK (1U << 2) // Clock operation +#define LOG_REG (1U << 3) // Register write +#define LOG_WATCHDOG (1U << 4) // Watchdog +#define LOG_TRANSFER (1U << 5) // Transfer -#define VERBOSE ( LOG_GENERAL | LOG_WARN ) +#define VERBOSE (LOG_GENERAL | LOG_WARN) #include "logmacro.h" // device type definition |
