summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/mos6702.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/machine/mos6702.h')
-rw-r--r--src/devices/machine/mos6702.h14
1 files changed, 2 insertions, 12 deletions
diff --git a/src/devices/machine/mos6702.h b/src/devices/machine/mos6702.h
index 4e7ef027b6e..ab1ea945e6e 100644
--- a/src/devices/machine/mos6702.h
+++ b/src/devices/machine/mos6702.h
@@ -25,16 +25,6 @@
#pragma once
-
-//**************************************************************************
-// INTERFACE CONFIGURATION MACROS
-//**************************************************************************
-
-#define MCFG_MOS6702_ADD(tag, clock) \
- MCFG_DEVICE_ADD(tag, MOS6702, clock)
-
-
-
//**************************************************************************
// TYPE DEFINITIONS
//**************************************************************************
@@ -47,8 +37,8 @@ public:
// construction/destruction
mos6702_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
protected:
// device-level overrides