summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/cdp1869.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/cdp1869.h')
-rw-r--r--src/devices/sound/cdp1869.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/devices/sound/cdp1869.h b/src/devices/sound/cdp1869.h
index ac377a9815c..be366a8d029 100644
--- a/src/devices/sound/cdp1869.h
+++ b/src/devices/sound/cdp1869.h
@@ -187,20 +187,20 @@ public:
virtual void char_map(address_map &map);
virtual void page_map(address_map &map);
- DECLARE_WRITE8_MEMBER( out3_w );
- DECLARE_WRITE8_MEMBER( out4_w );
- DECLARE_WRITE8_MEMBER( out5_w );
- DECLARE_WRITE8_MEMBER( out6_w );
- DECLARE_WRITE8_MEMBER( out7_w );
+ void out3_w(uint8_t data);
+ void out4_w(offs_t offset);
+ void out5_w(offs_t offset);
+ void out6_w(offs_t offset);
+ void out7_w(offs_t offset);
- DECLARE_READ8_MEMBER( char_ram_r );
- DECLARE_WRITE8_MEMBER( char_ram_w );
+ uint8_t char_ram_r(offs_t offset);
+ void char_ram_w(offs_t offset, uint8_t data);
- DECLARE_READ8_MEMBER( page_ram_r );
- DECLARE_WRITE8_MEMBER( page_ram_w );
+ uint8_t page_ram_r(offs_t offset);
+ void page_ram_w(offs_t offset, uint8_t data);
- DECLARE_READ_LINE_MEMBER( predisplay_r );
- DECLARE_READ_LINE_MEMBER( pal_ntsc_r );
+ int predisplay_r();
+ int pal_ntsc_r();
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);