diff options
Diffstat (limited to 'src/devices/machine/z80scc.cpp')
| -rw-r--r-- | src/devices/machine/z80scc.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/devices/machine/z80scc.cpp b/src/devices/machine/z80scc.cpp index 8a6efee3fae..5d1a0cffef8 100644 --- a/src/devices/machine/z80scc.cpp +++ b/src/devices/machine/z80scc.cpp @@ -99,16 +99,15 @@ baud rate: // CONFIGURABLE LOGGING //************************************************************************** -#define LOG_GENERAL (1U << 0) -#define LOG_SETUP (1U << 1) -#define LOG_READ (1U << 2) -#define LOG_INT (1U << 3) -#define LOG_CMD (1U << 4) -#define LOG_TX (1U << 5) -#define LOG_RCV (1U << 6) -#define LOG_CTS (1U << 7) -#define LOG_DCD (1U << 8) -#define LOG_SYNC (1U << 9) +#define LOG_SETUP (1U << 1) +#define LOG_READ (1U << 2) +#define LOG_INT (1U << 3) +#define LOG_CMD (1U << 4) +#define LOG_TX (1U << 5) +#define LOG_RCV (1U << 6) +#define LOG_CTS (1U << 7) +#define LOG_DCD (1U << 8) +#define LOG_SYNC (1U << 9) //#define VERBOSE (LOG_GENERAL|LOG_SETUP|LOG_READ|LOG_INT|LOG_CMD|LOG_TX|LOG_RCV|LOG_CTS|LOG_DCD|LOG_SYNC) //#define LOG_OUTPUT_STREAM std::cout |
