summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/cpu/clipper/clipper.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/cpu/clipper/clipper.h')
-rw-r--r--src/devices/cpu/clipper/clipper.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/cpu/clipper/clipper.h b/src/devices/cpu/clipper/clipper.h
index 49857a0a689..a00b8d5ce1c 100644
--- a/src/devices/cpu/clipper/clipper.h
+++ b/src/devices/cpu/clipper/clipper.h
@@ -1,5 +1,6 @@
// license:BSD-3-Clause
// copyright-holders:Patrick Mackinlay
+
#ifndef MAME_CPU_CLIPPER_CLIPPER_H
#define MAME_CPU_CLIPPER_CLIPPER_H
@@ -7,7 +8,6 @@
#include <limits.h>
-
class clipper_device : public cpu_device
{
enum registers
@@ -164,7 +164,7 @@ class clipper_device : public cpu_device
};
public:
- DECLARE_READ_LINE_MEMBER(ssw) { return m_ssw; }
+ DECLARE_READ32_MEMBER(ssw) { return m_ssw; }
protected:
clipper_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock);