diff options
Diffstat (limited to 'src/devices/machine/z80sio.cpp')
| -rw-r--r-- | src/devices/machine/z80sio.cpp | 25 |
1 files changed, 12 insertions, 13 deletions
diff --git a/src/devices/machine/z80sio.cpp b/src/devices/machine/z80sio.cpp index 8306c48bab4..1cc00b784ab 100644 --- a/src/devices/machine/z80sio.cpp +++ b/src/devices/machine/z80sio.cpp @@ -72,19 +72,18 @@ // MACROS / CONSTANTS //************************************************************************** -//#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_BIT (1U << 10) -#define LOG_RTS (1U << 11) -#define LOG_BRG (1U << 12) +#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_BIT (1U << 10) +#define LOG_RTS (1U << 11) +#define LOG_BRG (1U << 12) //#define VERBOSE (LOG_CMD | LOG_SETUP | LOG_SYNC | LOG_BIT | LOG_TX ) //#define LOG_OUTPUT_STREAM std::cout |
