diff options
Diffstat (limited to 'src/mess/machine/cs8221.c')
-rw-r--r-- | src/mess/machine/cs8221.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mess/machine/cs8221.c b/src/mess/machine/cs8221.c index c7c4739a9f1..cb46215cb4a 100644 --- a/src/mess/machine/cs8221.c +++ b/src/mess/machine/cs8221.c @@ -22,8 +22,8 @@ // GLOBAL VARIABLES //************************************************************************** -#define LOG_REGISTER 1 -#define LOG_MEMORY 1 +#define LOG_REGISTER 1 +#define LOG_MEMORY 1 const device_type CS8221 = &device_creator<cs8221_device>; @@ -58,8 +58,8 @@ static const char *const register_names[] = cs8221_device::cs8221_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : device_t(mconfig, CS8221, "CS8221", tag, owner, clock), - m_address(0), - m_address_valid(false) + m_address(0), + m_address_valid(false) { } |