summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/audio/mea8000.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/audio/mea8000.h')
-rw-r--r--src/mess/audio/mea8000.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/audio/mea8000.h b/src/mess/audio/mea8000.h
index 0910ae59872..e565f33ed8d 100644
--- a/src/mess/audio/mea8000.h
+++ b/src/mess/audio/mea8000.h
@@ -40,7 +40,7 @@ struct mea8000_interface
const char * channel;
/* 1-bit 'ready' output, not negated */
- write8_device_func req_out_func;
+ devcb_write8 req_out_func;
};
@@ -49,7 +49,7 @@ struct mea8000_interface
MCFG_DEVICE_CONFIG(_intrf)
/* interface to CPU via address/data bus*/
-extern READ8_DEVICE_HANDLER ( mea8000_r );
-extern WRITE8_DEVICE_HANDLER ( mea8000_w );
+extern DECLARE_READ8_DEVICE_HANDLER ( mea8000_r );
+extern DECLARE_WRITE8_DEVICE_HANDLER ( mea8000_w );
#endif