summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/sed1330.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/sed1330.h')
-rw-r--r--src/devices/video/sed1330.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/devices/video/sed1330.h b/src/devices/video/sed1330.h
index aa1b7f38194..2baf3b011cd 100644
--- a/src/devices/video/sed1330.h
+++ b/src/devices/video/sed1330.h
@@ -28,11 +28,11 @@ public:
// construction/destruction
sed1330_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
- DECLARE_READ8_MEMBER( status_r );
- DECLARE_WRITE8_MEMBER( command_w );
+ uint8_t status_r();
+ void command_w(uint8_t data);
- DECLARE_READ8_MEMBER( data_r );
- DECLARE_WRITE8_MEMBER( data_w );
+ uint8_t data_r();
+ void data_w(uint8_t data);
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);