summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/mos6560.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/mos6560.h')
-rw-r--r--src/devices/sound/mos6560.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/devices/sound/mos6560.h b/src/devices/sound/mos6560.h
index 847ec1bacd6..ecee2ec3f82 100644
--- a/src/devices/sound/mos6560.h
+++ b/src/devices/sound/mos6560.h
@@ -92,12 +92,12 @@ public:
virtual space_config_vector memory_space_config() const override;
- DECLARE_READ8_MEMBER( read );
- DECLARE_WRITE8_MEMBER( write );
+ uint8_t read(offs_t offset);
+ void write(offs_t offset, uint8_t data);
uint8_t bus_r();
- DECLARE_WRITE_LINE_MEMBER( lp_w );
+ void lp_w(int state);
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);