diff options
Diffstat (limited to 'src/devices/cpu/clipper/clipper.h')
-rw-r--r-- | src/devices/cpu/clipper/clipper.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/cpu/clipper/clipper.h b/src/devices/cpu/clipper/clipper.h index 49857a0a689..c94cfdac747 100644 --- a/src/devices/cpu/clipper/clipper.h +++ b/src/devices/cpu/clipper/clipper.h @@ -1,13 +1,13 @@ // license:BSD-3-Clause // copyright-holders:Patrick Mackinlay -#ifndef MAME_CPU_CLIPPER_CLIPPER_H -#define MAME_CPU_CLIPPER_CLIPPER_H + +#ifndef MAME_DEVICES_CPU_CLIPPER_H +#define MAME_DEVICES_CPU_CLIPPER_H #pragma once #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); @@ -267,4 +267,4 @@ DECLARE_DEVICE_TYPE(CLIPPER_C400, clipper_c400_device) extern CPU_DISASSEMBLE(clipper); -#endif // MAME_CPU_CLIPPER_CLIPPER_H +#endif // MAME_DEVICES_CPU_CLIPPER_H |